better shell

This commit is contained in:
2026-03-09 15:00:48 +00:00
parent 5f4b230067
commit aeb9219721
+4 -4
View File
@@ -1,7 +1,7 @@
{ config, lib, ... }: {config, ...}: {
{ flake.nixosModules.shell = {pkgs, ...}: {
flake.nixosModules.shell = {
programs.fish.enable = true; programs.fish.enable = true;
# users.users.${config.username}.shell = nixosArgs.config.programs.fish.package; users.users.${config.username}.shell = pkgs.fish;
users.defaultUserShell = pkgs.fish;
}; };
} }