WIP
This commit is contained in:
+14
-9
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user