1
0
forked from extern/nix-config

Split modules based on function

This commit is contained in:
Donovan Glover 2023-05-18 15:54:15 -04:00
parent e20be890d0
commit 7bcb8a5807
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
45 changed files with 59 additions and 0 deletions

12
applications/default.nix Normal file
View File

@ -0,0 +1,12 @@
{
imports = [
./feh
./kitty
./librewolf
./mpv
./piper
./qutebrowser
./thunar
./zathura
];
}

9
common/default.nix Normal file
View File

@ -0,0 +1,9 @@
{
imports = [
./home-manager
./locale
./nix
./systemd
./timezone
];
}

14
desktop/default.nix Normal file
View File

@ -0,0 +1,14 @@
{
imports = [
./dunst
./fcitx5
./hyprland
./mozc
./rofi
./swaylock
./waybar
./xcursor
./xresources
./xserver
];
}

5
dev/default.nix Normal file
View File

@ -0,0 +1,5 @@
{
imports = [
./npm
];
}

6
games/default.nix Normal file
View File

@ -0,0 +1,6 @@
{
imports = [
./osu
./srb2
];
}

13
terminal/default.nix Normal file
View File

@ -0,0 +1,13 @@
{
imports = [
./bat
./fish
./git
./htop
./ncmpcpp
./neovim
./ranger
./starship
./tig
];
}