From cb3cc2aabcbab344578182b88c89bb1b86c35953 Mon Sep 17 00:00:00 2001 From: joygnu Date: Tue, 18 Jun 2024 17:49:46 +0200 Subject: [PATCH] lol --- hosts/laptop/default.nix | 1 - hosts/laptop/hardware.nix | 8 +++----- modules/packages/default.nix | 2 ++ 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index 463c0ce..6c76b5f 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -2,7 +2,6 @@ { networking.hostName = "laptop"; networking.networkmanager.enable = true; - hardware.nvidia.nvidiaSettings = true; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; diff --git a/hosts/laptop/hardware.nix b/hosts/laptop/hardware.nix index a70d4bc..0b8a044 100644 --- a/hosts/laptop/hardware.nix +++ b/hosts/laptop/hardware.nix @@ -14,18 +14,16 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/aa1db414-24a7-46c5-872b-6a88a0fdb1d8"; + { device = "/dev/disk/by-uuid/da82e336-4ae6-491e-a68c-2c7ab519635c"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/0CB0-36CE"; + { device = "/dev/disk/by-uuid/7B53-C0F2"; fsType = "vfat"; }; - swapDevices = - [ { device = "/dev/disk/by-uuid/ef9203a3-505b-4331-b19a-cd2ec27a9d00"; } - ]; + swapDevices = [ ]; # 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/modules/packages/default.nix b/modules/packages/default.nix index 18be6fd..073672f 100644 --- a/modules/packages/default.nix +++ b/modules/packages/default.nix @@ -1,6 +1,8 @@ { config, pkgs, ... }: { + hardware.bluetooth.enable = true; + hardware.bluetooth.enable = true; virtualisation.docker.rootless.enable = true; virtualisation.docker.enable = true; nixpkgs.config.allowUnfree = true;