Commit ba22c233ab0b
Changed files (3)
profiles
profiles/default.nix
@@ -5,6 +5,7 @@
./users.nix
../pkgs/home-manager/nixos
];
+ boot.loader.systemd-boot.enable = true;
environment = {
variables = {
EDITOR = pkgs.lib.mkOverride 0 "vim";
profiles/desktop.nix
@@ -12,7 +12,6 @@
];
programs = {
- zsh.enable = true;
fish.enable = true;
};
profiles/server.nix
@@ -4,8 +4,8 @@
{
imports = [
+ ./default.nix
./ssh.nix
];
- boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}