Files
2026-03-19 21:44:00 +01:00

28 lines
574 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
prusa-slicer
];
};
};
}