diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-17 18:14:22 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-17 18:14:22 +0200 |
| commit | fe0e613928323f9dc538f1bdea8138456abffc4b (patch) | |
| tree | 019728342ae0f3329ab9ff631c02e55e4472f18a /hosts/template/default.nix | |
create nix configuration
Diffstat (limited to 'hosts/template/default.nix')
| -rw-r--r-- | hosts/template/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/hosts/template/default.nix b/hosts/template/default.nix new file mode 100644 index 0000000..0433557 --- /dev/null +++ b/hosts/template/default.nix @@ -0,0 +1,26 @@ +{ ... }: +{ + imports = [ + ./hardware.nix + ../../modules/hyprland/monitor.nix + ]; + + networking.hostName = "template"; + + boot.loader = { + grub = { + enable = true; + device = "/dev/vda"; + }; + }; + + hyprland.monitors = { + default = { + resolution = "preferred"; + position = "auto"; + scale = 1; + }; + }; + + system.stateVersion = "24.05"; +} |