added default.nix files
This commit is contained in:
parent
6d82cb9640
commit
07948eefd3
10 changed files with 74 additions and 30 deletions
|
@ -59,42 +59,21 @@
|
|||
./hardware-configuration.nix
|
||||
./boot.nix
|
||||
|
||||
../../modules/locale.nix
|
||||
../../modules/networking.nix
|
||||
../../modules/boot_theming.nix
|
||||
../../modules/environment.nix
|
||||
../../modules
|
||||
|
||||
../../modules/users/ranomier.nix
|
||||
../../modules/users
|
||||
|
||||
../../modules/specific_hardware/scan_and_print.nix
|
||||
../../modules/specific_hardware/fwupd.nix
|
||||
../../modules/specific_hardware/bluetooth.nix
|
||||
../../modules/specific_hardware
|
||||
|
||||
../../modules/sec_auth/firejail.nix
|
||||
../../modules/sec_auth/login-manager.nix
|
||||
../../modules/sec_auth/apparmor.nix
|
||||
../../modules/sec_auth/ssh.nix
|
||||
../../modules/sec_auth
|
||||
|
||||
../../modules/software/software.nix
|
||||
../../modules/software/virt.nix
|
||||
../../modules/software/game.nix
|
||||
../../modules/software/audio_video.nix
|
||||
../../modules/software/obs-studio.nix
|
||||
../../modules/software/shell.nix
|
||||
../../modules/software/flatpak.nix
|
||||
../../modules/software
|
||||
../../modules/software/browser
|
||||
../../modules/software/nix-helper
|
||||
|
||||
../../modules/wm_and_de/hyprland.nix
|
||||
../../modules/wm_and_de
|
||||
|
||||
../../modules/pkg_mgrmnt/flatpak.nix
|
||||
../../modules/pkg_mgrmnt/podman.nix
|
||||
../../modules/pkg_mgrmnt/store_pkg_file.nix
|
||||
../../modules/pkg_mgrmnt
|
||||
|
||||
../../modules/software/nix-helper/index.nix
|
||||
#../../modules/software/nix-helper/doc.nix
|
||||
../../modules/software/nix-helper/nix-ld.nix
|
||||
|
||||
../../modules/software/browser/firefox.nix
|
||||
../../modules/software/browser/brave.nix
|
||||
../../modules/software/browser/nyxt.nix
|
||||
];
|
||||
}
|
||||
|
|
8
modules/default.nix
Normal file
8
modules/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./boot_theming.nix
|
||||
./environment.nix
|
||||
./locale.nix
|
||||
./networking.nix
|
||||
];
|
||||
}
|
7
modules/pkg_mgrmnt/default.nix
Normal file
7
modules/pkg_mgrmnt/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./flatpak.nix
|
||||
./podman.nix
|
||||
./store_pkg_file.nix
|
||||
];
|
||||
}
|
8
modules/sec_auth/default.nix
Normal file
8
modules/sec_auth/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./apparmor.nix
|
||||
./firejail.nix
|
||||
./login-manager.nix
|
||||
./ssh.nix
|
||||
];
|
||||
}
|
7
modules/software/browser/default.nix
Normal file
7
modules/software/browser/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./brave.nix
|
||||
./firefox.nix
|
||||
./nyxt.nix
|
||||
];
|
||||
}
|
11
modules/software/default.nix
Normal file
11
modules/software/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./audio_video.nix
|
||||
./flatpak.nix
|
||||
./game.nix
|
||||
./obs-studio.nix
|
||||
./shell.nix
|
||||
./software.nix
|
||||
./virt.nix
|
||||
];
|
||||
}
|
7
modules/software/nix-helper/default.nix
Normal file
7
modules/software/nix-helper/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
#./doc.nix
|
||||
./index.nix
|
||||
./nix-ld.nix
|
||||
];
|
||||
}
|
7
modules/specific_hardware/default.nix
Normal file
7
modules/specific_hardware/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./bluetooth.nix
|
||||
./fwupd.nix
|
||||
./scan_and_print.nix
|
||||
];
|
||||
}
|
5
modules/users/default.nix
Normal file
5
modules/users/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./ranomier.nix
|
||||
];
|
||||
}
|
5
modules/wm_and_de/default.nix
Normal file
5
modules/wm_and_de/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./hyprland.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue