-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.nix
63 lines (58 loc) · 1.59 KB
/
utilities.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ self, nixpkgs, inputs, outputs, ... }:
let
home-manager = inputs.home-manager;
catppuccin = inputs.catppuccin;
spicetify-nix = inputs.spicetify-nix;
nvf = inputs.nvf;
myLib = {
string = {
removeNewlines = str: builtins.replaceStrings [ "\n" ] [ "" ] str;
};
};
in {
mkSystem = { name, user ? "maj", battery ? false, wallpaper ? "1920x1080"
, cursorSize ? 18, theme ? "mocha" }:
let
sysOptions = { inherit user battery wallpaper cursorSize theme; };
wallpapers = "${self}/media/wallpaper";
default_modules = [
catppuccin.nixosModules.catppuccin
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
catppuccin = {
enable = true;
flavor = "${theme}";
};
}
"${self}/config/shared"
];
default_hm_modules = [
catppuccin.homeManagerModules.catppuccin
spicetify-nix.homeManagerModules.spicetify
nvf.homeManagerModules.default
{
catppuccin = {
enable = true;
flavor = "${theme}";
};
}
"${self}/home/shared"
];
args = {
inherit inputs outputs self wallpapers myLib spicetify-nix sysOptions;
};
in nixpkgs.lib.nixosSystem {
specialArgs = args;
modules = default_modules ++ [
./config/${name}
{
home-manager = {
extraSpecialArgs = args;
users.${user}.imports = default_hm_modules
++ [ ./home/${name}.nix ];
};
}
];
};
}