Factor out base configuration
This commit is contained in:
parent
9dee45480d
commit
133bd3e673
4 changed files with 42 additions and 3 deletions
20
nixos/modules/base.nix
Normal file
20
nixos/modules/base.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ inputs }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.lix-module.nixosModules.default
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue