Files
nix-config/modules/hosts/keith/users/weckyy702/weckyy702.nix
Weckyy702 e34b5ecce3 Update to (somewhat?) dendritic pattern
Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts.

> Atomic commits? Never heard of them!
2026-03-15 15:04:47 +01:00

26 lines
597 B
Nix

{ inputs, ... }: {
flake.modules.nixos.keith = { config, ... }: {
imports = with inputs.self.modules.nixos; [
weckyy702
steam
];
home-manager.users.weckyy702 = { config, ... }: {
imports = with inputs.self.modules.homeManager;
with inputs.self.factory; [
(hyprpaper {
wallpaper_path = "${inputs.assets}/horizontal_16x9.png";
monitor_names = [
"DP-1"
"HDMI-A-1"
];
})
vesktop
spicetify
borgmatic
qbittorrent
];
};
};
}