From 2a79b770054d1cd4699cdaaae8eab83a8ca92006 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 29 Aug 2023 12:15:22 +0530 Subject: repo: update the project structure --- hosts/cez.nix | 32 ++++++++++++++++++++++++++++++++ hosts/kay.nix | 5 +++++ 2 files changed, 37 insertions(+) create mode 100644 hosts/cez.nix create mode 100644 hosts/kay.nix (limited to 'hosts') 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; + }; +} diff --git a/hosts/kay.nix b/hosts/kay.nix new file mode 100644 index 0000000..49a17c0 --- /dev/null +++ b/hosts/kay.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ tmux ]; +} -- cgit v1.2.3