This commit is contained in:
Till 2026-01-29 17:22:27 +01:00
parent 92cfae9488
commit 648602c92e
11 changed files with 13 additions and 19 deletions

View file

@ -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
];
};
};

View file

@ -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

View file

@ -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";
}

View file

@ -1,7 +0,0 @@
{ config, pkgs, lib, ... }:
{
imports = [
];
}

View file

@ -7,7 +7,7 @@
extraGroups = [ "networkmanager" ];
shell = pkgs.fish;
openssh.authorizedKeys.keyFiles = [
../till${"@"}nova.pub
../till/ssh/till${"@"}nova.pub
];
};
}

View file

@ -10,7 +10,7 @@
];
shell = pkgs.fish;
openssh.authorizedKeys.keyFiles = [
../till${"@"}nova.pub
./ssh/till${"@"}nova.pub
];
};
}