nix/home.nix

25 lines
518 B
Nix

{ config, pkgs, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
in
{
imports = [
(import "${home-manager}/nixos")
];
home-manager.users.leo = {
home.stateVersion = "18.09";
programs.kitty = {
enable = true;
settings = {
font_family = "ProFont IIx Nerd Font Mono"; # change if needed
font_size = 12.0;
};
shellIntegration = {
enableFishIntegration = true;
};
};
};
}