this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:construction: work home manager

+26 -24
+5 -5
README.org
··· 98 98 modules = [{ 99 99 # Home Manager needs a bit of information about you and the paths it should 100 100 # manage. 101 - home.username = users.workusername; 101 + home.username = users.work.username; 102 102 home.homeDirectory = "/home/${users.work.username}"; 103 103 104 104 home.stateVersion = stateVersion; # Please read the comment before changing. ··· 108 108 }; 109 109 110 110 imports = [ 111 - ./alacritty 112 - ./emacs 113 - ./neovim 114 - ./vscode 111 + ./home/alacritty 112 + ./home/emacs 113 + ./home/neovim 114 + ./home/vscode 115 115 ]; 116 116 }]; 117 117 };
+21 -19
flake.nix
··· 47 47 homeConfigurations = { 48 48 work = home-manager.lib.homeManagerConfiguration { 49 49 inherit pkgs; 50 - modules = [{ 51 - # Home Manager needs a bit of information about you and the paths it should 52 - # manage. 53 - home.username = users.workusername; 54 - home.homeDirectory = "/home/${users.work.username}"; 55 - 56 - home.stateVersion = stateVersion; # Please read the comment before changing. 57 - 58 - programs = { 59 - home-manager.enable = true; 60 - }; 61 - 62 - imports = [ 63 - ./alacritty 64 - ./emacs 65 - ./neovim 66 - ./vscode 67 - ]; 68 - }]; 50 + modules = [ 51 + { 52 + # Home Manager needs a bit of information about you and the paths it should 53 + # manage. 54 + home.username = users.work.username; 55 + home.homeDirectory = "/home/${users.work.username}"; 56 + 57 + home.stateVersion = stateVersion; # Please read the comment before changing. 58 + 59 + programs = { 60 + home-manager.enable = true; 61 + }; 62 + 63 + imports = [ 64 + # ./home/alacritty 65 + ./home/emacs 66 + # ./home/neovim 67 + # ./home/vscode 68 + ]; 69 + } 70 + ]; 69 71 }; 70 72 }; 71 73 };