summaryrefslogtreecommitdiff
path: root/systems/nzxt-desktop/system.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
commit31c316d19cd974bb81a5d6de62142ff24db1c78e (patch)
treecb941422c76cb8953830a8d58c8e14dca1a10319 /systems/nzxt-desktop/system.nix
parent1c21018347aa277caba74e554cb8d1b1e7fc6bed (diff)
reorganized directory structure
Diffstat (limited to 'systems/nzxt-desktop/system.nix')
-rw-r--r--systems/nzxt-desktop/system.nix66
1 files changed, 0 insertions, 66 deletions
diff --git a/systems/nzxt-desktop/system.nix b/systems/nzxt-desktop/system.nix
deleted file mode 100644
index db42aa1..0000000
--- a/systems/nzxt-desktop/system.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{config, ...}: {
- imports = [./hardware.nix];
-
- general-settings = {
- hostname = "nzxt-desktop";
- locale = "en_US.UTF-8";
- timezone = "America/New_York";
- stateVersion = "23.11";
- };
-
- age.secrets.culsans-user-password.file = ../../secrets/user-passwords/nzxt-desktop/culsans.age;
-
- users.users."culsans" = {
- hashedPasswordFile = config.age.secrets.culsans-user-password.path;
- isNormalUser = true;
- description = "Culsans";
- extraGroups = [
- "networkmanager"
- "wheel"
- "audio"
- "video"
- "libvirtd" # VmWare User
- "vboxusers" # Virtualbox user
- ];
- };
-
- features = {
- gui = {
- apps = {
- steam.enable = true;
- };
- desktops = {
- niri.enable = true;
- };
- };
- cli = {
- shells.nushell.enable = true;
- utils = {
- nh = {
- enable = true;
- flake = "/home/culsans/Sync/setup";
- };
- };
- };
- services = {
- core.systemd-boot.enable = true;
- hardware = {
- bluetooth.enable = true;
- iwd.enable = true;
- pipewire.enable = true;
- };
- extra = {
- plymouth.enable = true;
- sddm.enable = true;
- syncthing-client = {
- enable = true;
- username = "culsans";
- };
- udisks2.enable = true;
- };
- bundles = {
- printing.enable = true;
- };
- };
- };
-}