refac: restructure home-manager configs
|
@ -37,5 +37,5 @@
|
|||
|
||||
nix.settings.trusted-users = lib.mkAfter [ "jan" ];
|
||||
|
||||
age.secrets.users-jan-passfile.file = ../../secrets/users-jan-passfile.age;
|
||||
age.secrets.users-jan-passfile.file = ../../../secrets/users-jan-passfile.age;
|
||||
}
|
|
@ -4,23 +4,23 @@
|
|||
imports = [
|
||||
./accounts.secret.nix
|
||||
|
||||
../modules/window_manager
|
||||
../modules/terminal.nix
|
||||
../modules/shell.nix
|
||||
../../modules/window_manager
|
||||
../../modules/terminal.nix
|
||||
../../modules/shell.nix
|
||||
|
||||
../modules/notifications
|
||||
../modules/file_manager
|
||||
../modules/mail
|
||||
../modules/pass.nix
|
||||
../../modules/notifications
|
||||
../../modules/file_manager
|
||||
../../modules/mail
|
||||
../../modules/pass.nix
|
||||
|
||||
../modules/git.nix
|
||||
../modules/dev_tools.nix
|
||||
../modules/editor.nix
|
||||
../../modules/git.nix
|
||||
../../modules/dev_tools.nix
|
||||
../../modules/editor.nix
|
||||
|
||||
../modules/work_tools.nix
|
||||
../../modules/work_tools.nix
|
||||
|
||||
../modules/themes
|
||||
../modules/themes/catppuccin/frappe.nix
|
||||
../../modules/themes
|
||||
../../modules/themes/catppuccin/frappe.nix
|
||||
];
|
||||
|
||||
xdg.enable = true;
|
||||
|
@ -51,7 +51,8 @@
|
|||
# ungoogled-chromium
|
||||
tor-browser-bundle-bin
|
||||
|
||||
(pkgs.callPackage ../../packages/myip.nix { })
|
||||
(pkgs.callPackage ../../../packages/myip.nix { })
|
||||
(pkgs.callPackage ../../../packages/woodpecker { }).woodpecker-cli
|
||||
];
|
||||
|
||||
local.git = {
|
Before Width: | Height: | Size: 5.4 MiB After Width: | Height: | Size: 5.4 MiB |
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.6 MiB |
Before Width: | Height: | Size: 4.7 MiB After Width: | Height: | Size: 4.7 MiB |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 4.5 MiB After Width: | Height: | Size: 4.5 MiB |
Before Width: | Height: | Size: 2.2 MiB After Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 4.9 MiB After Width: | Height: | Size: 4.9 MiB |
Before Width: | Height: | Size: 3.5 MiB After Width: | Height: | Size: 3.5 MiB |
Before Width: | Height: | Size: 4.5 MiB After Width: | Height: | Size: 4.5 MiB |
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 4.3 MiB After Width: | Height: | Size: 4.3 MiB |
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.6 MiB |
|
@ -25,5 +25,5 @@
|
|||
home.stateVersion = config.system.stateVersion;
|
||||
};
|
||||
|
||||
age.secrets.users-nas-passfile.file = ../../secrets/users-nas-passfile.age;
|
||||
age.secrets.users-nas-passfile.file = ../../../secrets/users-nas-passfile.age;
|
||||
}
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
../modules/window_manager
|
||||
../modules/terminal.nix
|
||||
../modules/shell.nix
|
||||
../../modules/window_manager
|
||||
../../modules/terminal.nix
|
||||
../../modules/shell.nix
|
||||
|
||||
../modules/notifications
|
||||
../../modules/notifications
|
||||
|
||||
../modules/themes
|
||||
../modules/themes/catppuccin/frappe.nix
|
||||
../../modules/themes
|
||||
../../modules/themes/catppuccin/frappe.nix
|
||||
];
|
||||
|
||||
xdg.enable = true;
|
|
@ -70,7 +70,7 @@
|
|||
|
||||
# Wireguard client
|
||||
age.secrets.wireguard-asus-gl553vd-private = {
|
||||
file = ../../../../secrets/wireguard-asus-gl553vd-private.age;
|
||||
file = ../../../secrets/wireguard-asus-gl553vd-private.age;
|
||||
mode = "0400";
|
||||
};
|
||||
local.wireguard = {
|
||||
|
|
|
@ -11,8 +11,8 @@ in
|
|||
hardware.common-gpu-amd
|
||||
../modules/nix.nix
|
||||
../modules/wireguard-client.nix
|
||||
../../users/jan
|
||||
../../users/nas
|
||||
../../home/users/jan
|
||||
../../home/users/nas
|
||||
];
|
||||
|
||||
extraHomeModule = { ... }: {
|
||||
|
@ -28,8 +28,8 @@ in
|
|||
hardware.common-cpu-intel
|
||||
../modules/nix.nix
|
||||
../modules/wireguard-client.nix
|
||||
../../users/jan
|
||||
../../users/nas
|
||||
../../home/users/jan
|
||||
../../home/users/nas
|
||||
];
|
||||
|
||||
extraHomeModule = { ... }: {
|
||||
|
|