mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Restructured to use a profiles directory for cleaner structure.
This commit is contained in:
parent
2711729d50
commit
0668a962e8
12 changed files with 16 additions and 16 deletions
|
|
@ -3,7 +3,7 @@
|
|||
let unstable = import <nixos-unstable> {}; in {
|
||||
imports =
|
||||
[
|
||||
../../common
|
||||
../../profiles/common
|
||||
./hardware-configuration.nix
|
||||
#./services/postgres.nix
|
||||
./services/znc.nix
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../common
|
||||
../../desktop
|
||||
../../xfce
|
||||
../../profiles/common
|
||||
../../profiles/desktop
|
||||
../../profiles/xfce
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../common
|
||||
../../desktop
|
||||
../../gnome
|
||||
../../gaming
|
||||
../../development
|
||||
../../profiles/common
|
||||
../../profiles/desktop
|
||||
../../profiles/gnome
|
||||
../../profiles/gaming
|
||||
../../profiles/development
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../common
|
||||
../../desktop
|
||||
../../gnome
|
||||
../../gaming
|
||||
../../development
|
||||
../../profiles/common
|
||||
../../profiles/desktop
|
||||
../../profiles/gnome
|
||||
../../profiles/gaming
|
||||
../../profiles/development
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@ let
|
|||
};
|
||||
in {
|
||||
imports = [
|
||||
../../modules
|
||||
../../../modules
|
||||
"${home-manager}/nixos"
|
||||
./pbb.nix
|
||||
./users.nix
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(self: super: import ../../pkgs { nixpkgs = super.path; })
|
||||
(self: super: import ../../../pkgs { nixpkgs = super.path; })
|
||||
];
|
||||
|
||||
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
||||
Loading…
Add table
Add a link
Reference in a new issue