diff --git a/flake.nix b/flake.nix index 9994e9d..12bd1ba 100644 --- a/flake.nix +++ b/flake.nix @@ -23,6 +23,7 @@ ./system/btrbk.nix ./system/yubikey.nix ./system/alt.nix + ./system/lisa.nix ]; }; romulus = nixpkgs.lib.nixosSystem { diff --git a/home/alt.nix b/home/alt.nix index 5de2351..ad7adbd 100644 --- a/home/alt.nix +++ b/home/alt.nix @@ -2,9 +2,7 @@ { home.username = "alt"; - home.homeDirectory = "/home/alt"; home.stateVersion = "22.11"; - nixpkgs = { config = { allowUnfree = true; @@ -45,7 +43,9 @@ ./desktop ./firefox.nix ./foot.nix + ./fish.nix ./tmux + ./nvim ]; programs.nix-index = { @@ -66,16 +66,4 @@ }; }; }; - - programs.fish = { - enable = true; - shellInit = '' - set -gx EDITOR "nvim" - set -gx VISUAL "nvim" - ''; - }; - - home.shellAliases = { - v = "nvim"; - }; } diff --git a/system/alt.nix b/system/alt.nix index ede4c84..726c48b 100644 --- a/system/alt.nix +++ b/system/alt.nix @@ -5,7 +5,7 @@ home = "/home/alt"; isSystemUser = true; group = "users"; - description = "Backup profile"; + description = "Alt"; extraGroups = [ "networkmanager" ]; diff --git a/system/lisa.nix b/system/lisa.nix new file mode 100644 index 0000000..e4a228d --- /dev/null +++ b/system/lisa.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ + users.users.lisa = { + isNormalUser = true; + description = "Lisa"; + extraGroups = [ + "networkmanager" + ]; + }; +}