Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
26 lines
597 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|