🚚 [shared] Added shared config that shared desktop config inherits from

This commit is contained in:
2025-05-20 21:52:00 +02:00
parent adb02fbcc2
commit 9a8cc63674
92 changed files with 41 additions and 25 deletions

View File

@ -7,10 +7,10 @@
{
imports = with lib.custom; [
(relativeToRoot "shared/modules/nix-helper.nix")
(relativeToRoot "shared/modules/nixos.nix")
(relativeToRoot "shared/modules/shell.nix")
(relativeToRoot "shared/modules/security/sops.nix")
(relativeToRoot "shared/desktop/modules/nix-helper.nix")
(relativeToRoot "shared/desktop/modules/nixos.nix")
(relativeToRoot "shared/desktop/modules/shell.nix")
(relativeToRoot "shared/desktop/modules/security/sops.nix")
./boot.nix
./development.nix
./hardware.nix

View File

@ -9,14 +9,14 @@
{
imports = [
inputs.catppuccin.homeModules.catppuccin
(lib.custom.relativeToRoot "shared/home-manager/development/git.nix")
(lib.custom.relativeToRoot "shared/home-manager/development/helix.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/btop.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/eza.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/fastfetch.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/fish.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/zoxide.nix")
(lib.custom.relativeToRoot "shared/home-manager/gpg.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/development/git.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/development/helix.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/btop.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/eza.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/fastfetch.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/fish.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/shell/zoxide.nix")
(lib.custom.relativeToRoot "shared/desktop/home-manager/gpg.nix")
];
home.stateVersion = systemConfig.version;