diff options
author | ene <ene@sils.li> | 2023-02-05 08:58:11 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-05 09:02:27 +0100 |
commit | cb69f4ae60e2d94039a7bb0b5caa566a9d288686 (patch) | |
tree | a428bba3e57539142ac96eeeabbe57af2418055f /system | |
parent | Flake: Changed the configuration to a flake (diff) | |
download | nixos-server-cb69f4ae60e2d94039a7bb0b5caa566a9d288686.tar.gz nixos-server-cb69f4ae60e2d94039a7bb0b5caa566a9d288686.zip |
Fix: correct host name and convenience changes
We used the domain name instead of the host name, which obviously doesn't work for multiple host. In addition to that I changed some directory to make importing easier and enabled the "nix-command" and "flakes" experimental options, to make the `nix flake check` command usable. Refs: #15
Diffstat (limited to 'system')
-rw-r--r-- | system/system.nix | 8 | ||||
-rw-r--r-- | system/system/fileSystemLayouts.nix (renamed from system/fileSystemLayouts.nix) | 0 | ||||
-rw-r--r-- | system/system/hardware.nix (renamed from system/hardware.nix) | 0 | ||||
-rw-r--r-- | system/system/packages.nix (renamed from system/packages.nix) | 0 | ||||
-rw-r--r-- | system/system/users.nix (renamed from system/users.nix) | 0 |
5 files changed, 8 insertions, 0 deletions
diff --git a/system/system.nix b/system/system.nix new file mode 100644 index 0000000..2af4982 --- /dev/null +++ b/system/system.nix @@ -0,0 +1,8 @@ +{config, ...}: { + imports = [ + ./system/fileSystemLayouts.nix + ./system/hardware.nix + ./system/packages.nix + ./system/users.nix + ]; +} diff --git a/system/fileSystemLayouts.nix b/system/system/fileSystemLayouts.nix index 9d03a05..9d03a05 100644 --- a/system/fileSystemLayouts.nix +++ b/system/system/fileSystemLayouts.nix diff --git a/system/hardware.nix b/system/system/hardware.nix index c4c7dc9..c4c7dc9 100644 --- a/system/hardware.nix +++ b/system/system/hardware.nix diff --git a/system/packages.nix b/system/system/packages.nix index 4d33c6e..4d33c6e 100644 --- a/system/packages.nix +++ b/system/system/packages.nix diff --git a/system/users.nix b/system/system/users.nix index 34e1648..34e1648 100644 --- a/system/users.nix +++ b/system/system/users.nix |