This commit is contained in:
Michael Thomson 2025-01-26 23:16:42 +00:00
parent fefef9eb53
commit 4b34e48614
3 changed files with 4 additions and 16 deletions

View File

@ -23,7 +23,7 @@
gnugrep gnugrep
#gnupg #gnupg
#gnused #gnused
#gnutar gnutar
#bzip2 #bzip2
#gzip #gzip
#xz #xz
@ -42,6 +42,8 @@
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
user.shell = "${lib.getExe pkgs.zsh}";
# Set your time zone # Set your time zone
#time.timeZone = "Europe/Berlin"; #time.timeZone = "Europe/Berlin";

View File

@ -8,5 +8,6 @@
imports = [ imports = [
../../modules/home-manager/nixvim ../../modules/home-manager/nixvim
../../modules/home-manager/emacs ../../modules/home-manager/emacs
../../modules/home-manager/zsh
]; ];
} }

View File

@ -1,19 +1,4 @@
{pkgs, ...}: { {pkgs, ...}: {
programs.zsh.enable = true;
nix.settings = {
trusted-users = ["mthomson"];
substituters = [
"https://cache.nixos.org"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
users.users.mthomson = { users.users.mthomson = {
shell = pkgs.zsh; shell = pkgs.zsh;
isNormalUser = true; isNormalUser = true;