refactor: modularize the desktop environment
This commit is contained in:
parent
99389a2022
commit
e622446254
8 changed files with 10 additions and 5 deletions
|
|
@ -35,13 +35,9 @@
|
||||||
inputs.spicetify-nix.homeManagerModules.default
|
inputs.spicetify-nix.homeManagerModules.default
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.hmModules.nix-index
|
||||||
inputs.agenix.homeManagerModules.age
|
inputs.agenix.homeManagerModules.age
|
||||||
./hyprland.nix
|
./desktop
|
||||||
./git.nix
|
./git.nix
|
||||||
./waybar
|
|
||||||
./btop
|
./btop
|
||||||
./dunst.nix
|
|
||||||
./wofi.nix
|
|
||||||
./swaylock.nix
|
|
||||||
./easyeffects.nix
|
./easyeffects.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
|
|
|
||||||
9
home/desktop/default.nix
Normal file
9
home/desktop/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, lib, pkgs, ... }: {
|
||||||
|
imports = [
|
||||||
|
./hyprland.nix
|
||||||
|
./waybar
|
||||||
|
./dunst.nix
|
||||||
|
./swaylock.nix
|
||||||
|
./wofi.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue