Testing emacs

This commit is contained in:
2025-09-16 15:02:56 -04:00
parent 9b33a71816
commit e75178c276
12 changed files with 1049 additions and 89 deletions

View File

@@ -8,6 +8,20 @@
../services.nix
];
# Define a user account. Don't forget to set a password with passwd.
users.users.th3r00t = {
isNormalUser = true;
description = "Mike 'th3r00t' Young";
extraGroups = [ "networkmanager" "wheel" "input" ];
packages = with pkgs; [
# kdePackages.kate
# thunderbird
];
};
programs.zsh.enable = true;
programs.fish.enable = true;
programs.bash.enable = true;
users.defaultUserShell = pkgs.zsh;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.trusted-users = [ "root" "th3r00t" ];
nix.extraOptions = ''