mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-22 15:15:50 -06:00
WIP
This commit is contained in:
parent
2072296ae5
commit
64e3cefe08
1 changed files with 15 additions and 5 deletions
|
@ -5,8 +5,13 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
users.defaultUserShell = pkgs.zsh;
|
|
||||||
|
|
||||||
|
nix.package = pkgs.nixUnstable;
|
||||||
|
nix.extraOptions = ''
|
||||||
|
experimental-features = nix-command flakes
|
||||||
|
'';
|
||||||
|
|
||||||
|
users.defaultUserShell = pkgs.zsh;
|
||||||
users.extraUsers = {
|
users.extraUsers = {
|
||||||
daylin = {
|
daylin = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
@ -35,6 +40,12 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "algiz";
|
networking.hostName = "algiz";
|
||||||
|
|
||||||
|
# added to make using `pip install` work in docker build
|
||||||
|
networking.nameservers = [
|
||||||
|
"8.8.8.8"
|
||||||
|
];
|
||||||
|
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
|
@ -104,10 +115,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
services.openssh = {
|
services.openssh.enable = true;
|
||||||
enable = true;
|
services.openssh.settings.passwordAuthentication = false;
|
||||||
settings.passwordAuthentication = false;
|
|
||||||
};
|
|
||||||
users.mutableUsers = false;
|
users.mutableUsers = false;
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
|
|
Loading…
Add table
Reference in a new issue