This commit is contained in:
biscuit
2025-05-13 11:22:45 -05:00
parent 94f91e9a6d
commit 5d7d8e4b4f
6 changed files with 48 additions and 34 deletions
+14 -9
View File
@@ -28,8 +28,7 @@
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8"; LC_TIME = "en_US.UTF-8";
};
# Configure keymap in X11
@@ -39,12 +38,15 @@
};
# Define a user account. Don't forget to set a password with passwd.
users.users.biscuit = {
isNormalUser = true;
description = "Biscuit";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs;
[];
users = {
defaultUserShell = pkgs.bash;
users.biscuit = {
isNormalUser = true;
description = "Biscuit";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.zsh;
packages = with pkgs; [];
};
};
# List packages installed in system profile.
@@ -53,12 +55,15 @@
wget
git
home-manager
# neovim
zsh
];
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Enable non-bash shell
programs.zsh.enable = true;
# Enable experimental features
nix.settings.experimental-features = [ "nix-command" "flakes" ];
#nixpkgs = {