zsh default

This commit is contained in:
Geir Okkenhaug Jerstad 2024-06-11 09:27:36 +02:00
parent aaf819373b
commit 7614001f97
2 changed files with 7 additions and 5 deletions

View file

@ -102,7 +102,8 @@
users.users.geir = { users.users.geir = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.zsh;
packages = with pkgs; [ packages = with pkgs; [
teams-for-linux firefox ncpamixer starship discord fastfetch teams-for-linux firefox ncpamixer starship discord fastfetch
]; ];
@ -112,7 +113,7 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
foot kitty terminator foot kitty terminator zsh
dbus dbus
greetd.tuigreet greetd.tuigreet
wayland wayland

View file

@ -9,6 +9,7 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./k8s.nix ./k8s.nix
./podman.nix
]; ];
# Kernel # Kernel
@ -37,7 +38,7 @@
# enable unfree # enable unfree
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Network # Network
networking.hostName = "nixos-work"; networking.hostName = "work";
services.tailscale.enable = true; services.tailscale.enable = true;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.hostId = "8425e349"; networking.hostId = "8425e349";
@ -103,10 +104,10 @@
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
firefox ncpamixer starship discord fastfetch teams-for-linux firefox ncpamixer starship discord fastfetch
]; ];
}; };
programs.bash.blesh.enable = true;
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget