diff options
Diffstat (limited to '')
-rw-r--r-- | home-manager/default.nix | 55 |
1 files changed, 26 insertions, 29 deletions
diff --git a/home-manager/default.nix b/home-manager/default.nix index e6983ee4..d559d35b 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -12,38 +12,35 @@ configHome = "${homeDirectory}/.config"; in { imports = [ - home-manager.nixosModules.home-manager + #home-manager.nixosModules.home-manager - ./alacritty - ./cups - ./firefox - ./gammastep - ./git - ./grades - ./gtk - ./keepassxc - ./latexindent - ./less - ./lf - ./mako - ./mpd + ./alacritty + ./cups + ./firefox + ./gammastep + ./git + ./grades + ./gtk + ./keepassxc + ./latexindent + ./less + ./lf + ./mako + ./mpd ]; + home = { + inherit username homeDirectory; + stateVersion = "23.05"; - home-manager.users.soispha = { - home = { - inherit username homeDirectory; - stateVersion = "23.05"; - - # TODO - sessionVariables = { - DISPLAY = ":0"; - EDITOR = "nvim"; - }; - packages = []; - }; - xdg = { - inherit configHome; - enable = true; + # TODO + sessionVariables = { + DISPLAY = ":0"; + EDITOR = "nvim"; }; + packages = []; + }; + xdg = { + inherit configHome; + enable = true; }; } |