Move to gnu stow
This commit is contained in:
parent
cd08a447a8
commit
9ea93f8144
120 changed files with 994 additions and 53 deletions
32
misc/dot-config/nixos/configuration.def.nix
Normal file
32
misc/dot-config/nixos/configuration.def.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
# Do not remove
|
||||
./core.nix
|
||||
|
||||
# Want this for bare metal
|
||||
# ./hardware-configuration.nix
|
||||
|
||||
# Specific profiles for this machine
|
||||
# ./profiles/lf.nix
|
||||
# ./profiles/nvim.nix
|
||||
# ./profiles/desktop_x.nix
|
||||
];
|
||||
|
||||
networking.hostName = "nix";
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.nixos = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ # User implicitly in "users" group
|
||||
"wheel" # Sudo priviledges
|
||||
];
|
||||
shell = pkgs.zsh;
|
||||
|
||||
# Set so when mutableUsers is set to "false", the user still has a way to login.
|
||||
password = "";
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue