diff options
Diffstat (limited to 'modules/hosts/libreX60/configuration.nix')
-rw-r--r-- | modules/hosts/libreX60/configuration.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/hosts/libreX60/configuration.nix b/modules/hosts/libreX60/configuration.nix new file mode 100644 index 0000000..942793d --- /dev/null +++ b/modules/hosts/libreX60/configuration.nix @@ -0,0 +1,14 @@ +{ config, lib, pkgs, ... }: { + imports = [ ./hardware-configuration.nix ]; + networking.hostName = "libreX60"; + + # Enable extra software pkgs + software.desktop = { + office.enable = true; + }; + + # Enable network drives + nas.enable = true; + + system.stateVersion = "24.11"; +} |