refactor: modularize the desktop environment

This commit is contained in:
EinEtwas 2024-10-26 18:12:02 +02:00
parent 99389a2022
commit e622446254
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
8 changed files with 10 additions and 5 deletions

View file

@ -35,13 +35,9 @@
inputs.spicetify-nix.homeManagerModules.default
inputs.nix-index-database.hmModules.nix-index
inputs.agenix.homeManagerModules.age
./hyprland.nix
./desktop
./git.nix
./waybar
./btop
./dunst.nix
./wofi.nix
./swaylock.nix
./easyeffects.nix
./packages.nix
./alacritty.nix

9
home/desktop/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }: {
imports = [
./hyprland.nix
./waybar
./dunst.nix
./swaylock.nix
./wofi.nix
];
}