Files
nix-config/modules/hosts/keith/users/weckyy702/weckyy702.nix
Weckyy702 dbed42316a hosts/keith+home/hyprpaper: Remove home/hyprpaper
wpaperd is just cooler :(
2026-03-17 00:29:40 +01:00

27 lines
551 B
Nix

{ inputs, ... }: {
flake.modules.nixos.keith = { config, ... }: {
imports = with inputs.self.modules.nixos; [
weckyy702
steam
mullvad
];
home-manager.users.weckyy702 = { config, ... }: {
imports = with inputs.self.modules.homeManager;
with inputs.self.factory; [
(wpaperd {
default = {
path = "${inputs.assets}/horizontal_16x9.png";
};
})
vesktop
spicetify
borgmatic
qbittorrent
];
};
};
}