diff --git a/machines/Archie/hardware-configuration.nix b/machines/Archie/hardware-configuration.nix index 48133e7..08c86b5 100644 --- a/machines/Archie/hardware-configuration.nix +++ b/machines/Archie/hardware-configuration.nix @@ -9,7 +9,6 @@ ]; # Enabke support for the Xbox One wireless dongle - # Enable support for the Xbox One wireless dongle hardware.xone.enable = true; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; @@ -40,19 +39,6 @@ fsType = "vfat"; }; - /* - Mount the root subvolume of the SSD - This is helpful for getting things from - my old Arch install, as well as for running btdu - */ - fileSystems = { - "/mnt/ssd" = { - device = config.fileSystems."/".device; - fsType = config.fileSystems."/".fsType; - options = [ "subvolid=5" "ro" ]; - }; - }; - swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; diff --git a/roles/desktop/default.nix b/roles/desktop/default.nix index ac8b5dc..b13a242 100755 --- a/roles/desktop/default.nix +++ b/roles/desktop/default.nix @@ -4,6 +4,5 @@ imports = [ ./discord.nix ./firefox.nix - ./keepassxc.nix ]; } diff --git a/roles/desktop/keepassxc.nix b/roles/desktop/keepassxc.nix deleted file mode 100644 index 677c828..0000000 --- a/roles/desktop/keepassxc.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ config, pkgs, ... }: - -{ - # I'm only using keepass on my user, so I'm installing it with home-manager - home-manager = { - /* - TODO: move home-manager settings into the common role - They are not keepass specific, so they really should - not be here. I'm too lazy to do it now tho :P - */ - backupFileExtension = "backup"; - useGlobalPkgs = true; - users.toast = { config, pkgs, ... }: { - home = { - stateVersion = "23.05"; - packages = [ pkgs.keepassxc ]; - }; - }; - }; -}