first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
36
modules/core/default.nix
Normal file
36
modules/core/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ inputs
|
||||
, nixpkgs
|
||||
, self
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
lib = nixpkgs.lib;
|
||||
in
|
||||
{
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit self inputs; };
|
||||
modules =
|
||||
[ (import ./bootloader.nix) ]
|
||||
++ [ (import ./hardware.nix) ]
|
||||
++ [ (import ./xserver.nix) ]
|
||||
++ [ (import ./steam.nix) ]
|
||||
++ [ (import ./network.nix) ]
|
||||
++ [ (import ./pipewire.nix) ]
|
||||
++ [ (import ./program.nix) ]
|
||||
++ [ (import ./../home/package/python.nix) ]
|
||||
++ [ (import ./security.nix) ]
|
||||
++ [ (import ./services.nix) ]
|
||||
++ [ (import ./system.nix) ]
|
||||
++ [ (import ./user.nix) ]
|
||||
++ [ (import ./wayland.nix) ]
|
||||
++ [ (import ./cloudflare-warp.nix) ]
|
||||
++ [ (import ./virtualization.nix) ]
|
||||
++ [ (import ./../../hosts/nixos/hardware-configuration.nix) ]
|
||||
;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue