better shell

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