diff --git a/makefile b/makefile new file mode 100644 index 0000000..5a00808 --- /dev/null +++ b/makefile @@ -0,0 +1,15 @@ +switchHm = home-manager switch --flake +switchSys = nixos-rebuid switch --flake + +nix-dev: + nix develop --command $$SHELL + +home-me: fix-systemd + ${switchHm} .#homeMe + +sys-home: + sudo ${switchSys} .#systemHome + +fix-systemd: + systemctl --user reset-failed + diff --git a/system/configuration.nix b/system/configuration.nix index 003a3fb..1438621 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -89,6 +89,7 @@ in # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ + gnumake vim wget ];