lib: Comment modules
This commit is contained in:
parent
eaa5906334
commit
e0c250f52f
@ -28,14 +28,15 @@ in inputs.nixpkgs.lib.nixosSystem {
|
|||||||
system = architecture;
|
system = architecture;
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
|
# User configuration management
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Overlays
|
||||||
(util.mkOverlayFromInput "stable" inputs.stable)
|
(util.mkOverlayFromInput "stable" inputs.stable)
|
||||||
(util.mkOverlayFromInput "unstable" inputs.nixpkgs)
|
(util.mkOverlayFromInput "unstable" inputs.nixpkgs)
|
||||||
|
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
nur.overlay
|
nur.overlay
|
||||||
@ -45,10 +46,11 @@ in inputs.nixpkgs.lib.nixosSystem {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# My module system
|
||||||
(import ../modules)
|
(import ../modules)
|
||||||
|
|
||||||
inputs.ostylk.nixosModules.nftables
|
inputs.ostylk.nixosModules.nftables
|
||||||
|
|
||||||
|
# Actual config
|
||||||
(import ./baseSystem.nix)
|
(import ./baseSystem.nix)
|
||||||
(import hostConfigFile)
|
(import hostConfigFile)
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user