diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-08-29 12:15:22 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-08-29 12:38:25 +0530 |
commit | 2a79b770054d1cd4699cdaaae8eab83a8ca92006 (patch) | |
tree | bc1cfef81c101e2882df643be876e5e023cbd764 /hosts/cez.nix | |
parent | d0f36974931b425326ada13780e79666500c05a1 (diff) |
repo: update the project structure
Diffstat (limited to 'hosts/cez.nix')
-rw-r--r-- | hosts/cez.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/hosts/cez.nix b/hosts/cez.nix new file mode 100644 index 0000000..dfac196 --- /dev/null +++ b/hosts/cez.nix @@ -0,0 +1,32 @@ +{ ... }: + +{ + imports = [ + ../modules/wayland.nix + ../modules/kaysshfs.nix + ../modules/dev.nix + ]; + + boot = { + initrd.luks.reusePassphrases = true; + consoleLogLevel = 3; + }; + + networking = { + hostName = "cez"; + dhcpcd.wait = "background"; + wireless.iwd.enable = true; + }; + + sound = { + enable = true; + extraConfig = '' + defaults.pcm.card 1 + defaults.ctl.card 1 + ''; + }; + services.pipewire = { + enable = true; + pulse.enable = true; + }; +} |