Lilim: fresh stateless installation

This commit is contained in:
Kevin Baensch 2025-01-01 20:57:47 +01:00
parent ebd66cbfb4
commit 7b44675c02
Signed by: derped
GPG key ID: C0F1D326C7626543
6 changed files with 94 additions and 49 deletions

View file

@ -1,13 +1,7 @@
{
pkgs,
lib,
...
}:
with lib;
{
imports = [
../../options/copySysConf.nix
];
config.machine = {
allowUnfree = true;
hostName = "Lilim";
@ -25,6 +19,7 @@ with lib;
"etcfiles"
"etcvars"
"fonts"
"networkmanager"
"zsh"
];
pkgs = [
@ -69,9 +64,12 @@ with lib;
"xpkgs"
];
services = [
"btrbk"
"btrfs"
"cups"
"desktop"
"desktop::sway"
"impermanence"
"mariaDB"
"mullvad"
"pipewire"
@ -98,9 +96,4 @@ with lib;
];
};
};
config.system.copySysConf = {
enable = false;
addToNixPath = false;
};
}