rename common module to nixos
This commit is contained in:
parent
68cc9cbc1d
commit
f22fddbd3e
60 changed files with 1 additions and 1 deletions
40
modules/default/nixos/default.nix
Normal file
40
modules/default/nixos/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib, config, inputs, hostname, ... }:
|
||||
{
|
||||
|
||||
|
||||
|
||||
imports = [
|
||||
./desktop
|
||||
./nixvim
|
||||
./server
|
||||
|
||||
./autoupdate.nix
|
||||
./boot.nix
|
||||
./builder.nix
|
||||
./envvar.nix
|
||||
./garbage-collect.nix
|
||||
./keyd.nix
|
||||
./locales.nix
|
||||
./mimetype.nix
|
||||
./optimise.nix
|
||||
./options.nix
|
||||
./packages.nix
|
||||
./sops.nix
|
||||
./stylix.nix
|
||||
./syncthing.nix
|
||||
./users.nix
|
||||
];
|
||||
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
hostName = "${hostname}";
|
||||
};
|
||||
|
||||
console.keyMap = "en";
|
||||
nix = {
|
||||
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||||
};
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
system.stateVersion = "23.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue