feat: configuring shell & add fish shell
This commit is contained in:
parent
f20e3a6b57
commit
e73cc0c0f5
10 changed files with 130 additions and 22 deletions
10
modules/nixos/system.nix
Normal file
10
modules/nixos/system.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ config, pkgs, lib, user, ... }: {
|
||||
users.users.${user} = {
|
||||
isNormalUser = lib.mkDefault true;
|
||||
extraGroups = lib.mkDefault [ "wheel" "networkmanager" ];
|
||||
home = lib.mkDefault "/home/${user}";
|
||||
shell = lib.mkDefault pkgs.fish;
|
||||
};
|
||||
|
||||
programs.fish.enable = lib.mkDefault true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue