refactor
This commit is contained in:
parent
92cfae9488
commit
648602c92e
11 changed files with 13 additions and 19 deletions
|
|
@ -56,21 +56,21 @@
|
|||
till = {
|
||||
imports = [
|
||||
./home/desktop-full.nix
|
||||
./home/users/till.nix
|
||||
./users/till/home.nix
|
||||
];
|
||||
};
|
||||
|
||||
alt = {
|
||||
imports = [
|
||||
./home/desktop-slim.nix
|
||||
./home/users/alt.nix
|
||||
./users/alt/home.nix
|
||||
];
|
||||
};
|
||||
|
||||
guest = {
|
||||
imports = [
|
||||
./home/desktop-slim.nix
|
||||
./home/users/guest.nix
|
||||
./users/guest/home.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../users/alt.nix
|
||||
../../users/guest.nix
|
||||
../../users/alt/system.nix
|
||||
../../users/guest/system.nix
|
||||
../../system
|
||||
../../system/desktop
|
||||
../../system/desktop/gnome.nix
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../users/till.nix
|
||||
../users/till/system.nix
|
||||
];
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
users.mutableUsers = true;
|
||||
time.timeZone = "Europe/Berlin";
|
||||
users.mutableUsers = lib.mkDefault true;
|
||||
programs.fish.enable = true;
|
||||
time.timeZone = lib.mkDefault "Europe/Berlin";
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
nix = {
|
||||
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
|
@ -45,5 +45,6 @@
|
|||
settings.PermitRootLogin = "no";
|
||||
};
|
||||
|
||||
# Do NOT change this value
|
||||
system.stateVersion = "22.11";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
];
|
||||
|
||||
}
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
extraGroups = [ "networkmanager" ];
|
||||
shell = pkgs.fish;
|
||||
openssh.authorizedKeys.keyFiles = [
|
||||
../till${"@"}nova.pub
|
||||
../till/ssh/till${"@"}nova.pub
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
];
|
||||
shell = pkgs.fish;
|
||||
openssh.authorizedKeys.keyFiles = [
|
||||
../till${"@"}nova.pub
|
||||
./ssh/till${"@"}nova.pub
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue