another one :D

This commit is contained in:
cnst
2024-08-03 14:49:44 +02:00
parent e1f070d81a
commit ae9ee0cb35
98 changed files with 60 additions and 53 deletions

13
home/bin/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{
imports = [
# shared apps
./browsers
./discord
./utility
./alacritty
./foot
./neovim
./kitty
./yazi
];
}

View File

@@ -1,23 +0,0 @@
{
imports = [
# ./gui/anyrun
./gui/browsers
./gui/discord
./gui/utility
./gui/waybar
./gui/xdg
./gui/style
./tui/alacritty
./tui/foot
./tui/neovim
./tui/kitty
./tui/yazi
./services/copyq
./services/hypr
./services/mako
./services/polkit
./services/udiskie
];
}

View File

@@ -1,8 +0,0 @@
{
imports = [
./gtk.nix
./dconf.nix
# ./qt.nix
# ./global.nix
];
}

View File

@@ -8,25 +8,31 @@
homeImports = {
"cnst@cnix" = [
./core/gui/hypr/cnst.nix
./core/tui/git/cnst.nix
./core/tui/shell/cnst.nix
./core
./users/cnst
./usr/share/git/cnst
./usr/share/shell/cnst
./etc/hyprland/cnst
./etc
./bin
./srv
./profiles/cnst
];
"adam@adampad" = [
./core/gui/hypr/cnst.nix
./core/tui/git/cnst.nix
./core/tui/shell/adam.nix
./core
./users/adam
./usr/share/git/cnst
./usr/share/shell/adam
./etc/hyprland/cnst
./etc
./bin
./srv
./profiles/adam
];
"toothpick@toothpc" = [
./core/gui/hypr/toothpick.nix
./core/tui/git/toothpick.nix
./core/tui/shell/toothpick.nix
./core
./users/toothpick
./usr/share/git/toothpick
./usr/share/shell/toothpick
./etc/hyprland/toothpick
./etc
./bin
./srv
./profiles/toothpick
];
};

10
home/etc/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{
imports = [
# shared imports
./dconf
./gtk
./neovim
./waybar
./xdg
];
}

View File

@@ -5,7 +5,7 @@
}: {
imports = [
inputs.hyprland.homeManagerModules.default
./land/cnst
./cfg
];
wayland.windowManager.hyprland = {

View File

@@ -1,7 +1,7 @@
{inputs, ...}: {
imports = [
inputs.hyprland.homeManagerModules.default
./land/toothpick
./cfg
];
wayland.windowManager.hyprland = {
enable = true;

9
home/srv/default.nix Normal file
View File

@@ -0,0 +1,9 @@
{
imports = [
./copyq
./hypr
./mako
./polkit
./udiskie
];
}

View File

@@ -16,16 +16,16 @@ let
cnix =
shared
++ [
./usr/bin/gaming.nix
./usr/bin/android
./usr/bin/gimp
./usr/bin/inkscape
./opt/gaming.nix
./opt/android
./opt/gimp
./opt/inkscape
./srv/blueman
];
toothpc =
shared
++ [
./usr/bin/gaming.nix
./opt/gaming.nix
];
in {
inherit shared adampad cnix toothpc;