This commit is contained in:
joygnu 2024-06-18 17:49:46 +02:00
parent b64aca6950
commit cb3cc2aabc
3 changed files with 5 additions and 6 deletions

View file

@ -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;

View file

@ -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

View file

@ -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;