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 = { homeImports = {
"cnst@cnix" = [ "cnst@cnix" = [
./core/gui/hypr/cnst.nix ./usr/share/git/cnst
./core/tui/git/cnst.nix ./usr/share/shell/cnst
./core/tui/shell/cnst.nix ./etc/hyprland/cnst
./core ./etc
./users/cnst ./bin
./srv
./profiles/cnst
]; ];
"adam@adampad" = [ "adam@adampad" = [
./core/gui/hypr/cnst.nix ./usr/share/git/cnst
./core/tui/git/cnst.nix ./usr/share/shell/adam
./core/tui/shell/adam.nix ./etc/hyprland/cnst
./core ./etc
./users/adam ./bin
./srv
./profiles/adam
]; ];
"toothpick@toothpc" = [ "toothpick@toothpc" = [
./core/gui/hypr/toothpick.nix ./usr/share/git/toothpick
./core/tui/git/toothpick.nix ./usr/share/shell/toothpick
./core/tui/shell/toothpick.nix ./etc/hyprland/toothpick
./core ./etc
./users/toothpick ./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 = [ imports = [
inputs.hyprland.homeManagerModules.default inputs.hyprland.homeManagerModules.default
./land/cnst ./cfg
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {

View File

@@ -1,7 +1,7 @@
{inputs, ...}: { {inputs, ...}: {
imports = [ imports = [
inputs.hyprland.homeManagerModules.default inputs.hyprland.homeManagerModules.default
./land/toothpick ./cfg
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; 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 = cnix =
shared shared
++ [ ++ [
./usr/bin/gaming.nix ./opt/gaming.nix
./usr/bin/android ./opt/android
./usr/bin/gimp ./opt/gimp
./usr/bin/inkscape ./opt/inkscape
./srv/blueman ./srv/blueman
]; ];
toothpc = toothpc =
shared shared
++ [ ++ [
./usr/bin/gaming.nix ./opt/gaming.nix
]; ];
in { in {
inherit shared adampad cnix toothpc; inherit shared adampad cnix toothpc;