From 4c65d5cc6fd8e67a6e3ed9f7a8733a73686afba7 Mon Sep 17 00:00:00 2001 From: KaitoTLex Date: Wed, 18 Sep 2024 10:28:09 -0700 Subject: [PATCH] bruh --- hosts/shiroko/configuration.nix | 2 +- hosts/shiroko/hardware-configuration.nix | 12 ++++++++---- users/kaitotlex/home.nix | 8 ++++++++ 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/hosts/shiroko/configuration.nix b/hosts/shiroko/configuration.nix index 1243822..ed20ca6 100644 --- a/hosts/shiroko/configuration.nix +++ b/hosts/shiroko/configuration.nix @@ -23,7 +23,7 @@ # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - + security.polkit.enable = true; # Enable networking networking.networkmanager.enable = true; diff --git a/hosts/shiroko/hardware-configuration.nix b/hosts/shiroko/hardware-configuration.nix index b70bf0f..1cd0aec 100644 --- a/hosts/shiroko/hardware-configuration.nix +++ b/hosts/shiroko/hardware-configuration.nix @@ -24,14 +24,14 @@ boot.extraModulePackages = [ ]; fileSystems."/" = { - device = "/dev/disk/by-uuid/de53d520-7b49-4353-b88c-b599f8f50fbb"; + device = "/dev/disk/by-uuid/0b6e9715-5ce6-49d1-98f9-ea0a5d4237f9"; fsType = "ext4"; }; - boot.initrd.luks.devices."luks-1910bfb7-9cc4-4aff-88cb-8644012531d2".device = "/dev/disk/by-uuid/1910bfb7-9cc4-4aff-88cb-8644012531d2"; + boot.initrd.luks.devices."luks-fef5cb12-a610-4701-9215-717caf0b27ad".device = "/dev/disk/by-uuid/fef5cb12-a610-4701-9215-717caf0b27ad"; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/C5E5-09F1"; + device = "/dev/disk/by-uuid/A19B-FD09"; fsType = "vfat"; options = [ "fmask=0077" @@ -39,7 +39,11 @@ ]; }; - swapDevices = [ ]; + swapDevices = [ + { + device = "/dev/disk/by-uuid/7beb9844-e0c3-44dc-998f-ee42e36b9543"; + } + ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's diff --git a/users/kaitotlex/home.nix b/users/kaitotlex/home.nix index 90bc941..c6efd84 100644 --- a/users/kaitotlex/home.nix +++ b/users/kaitotlex/home.nix @@ -147,6 +147,14 @@ services.dunst.enable = true; + wayland.windowManager.sway = { + enable = true; + config = rec { + modifier = "Mod4"; + terminal = "kitty"; + }; + }; + programs.git = { enable = true; userName = "KaitoTLex";