mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
31 lines
530 B
Nix
31 lines
530 B
Nix
{
|
|
pkgs,
|
|
settings,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = let
|
|
modules = [
|
|
"librewolf"
|
|
"theme"
|
|
"picom"
|
|
"spicetify"
|
|
];
|
|
in
|
|
lib.lists.forEach modules (
|
|
m:
|
|
./. + ("/" + m + ".nix")
|
|
);
|
|
xsession.numlock.enable = true;
|
|
home = {
|
|
homeDirectory = "/home/${settings.username}";
|
|
stateVersion = settings.version;
|
|
file = {
|
|
".background-image".source = ../images/nix-stars.png;
|
|
".config" = {
|
|
source = ./config;
|
|
recursive = true;
|
|
};
|
|
};
|
|
};
|
|
}
|