altered some laptop specific settings to fit the new configuration settings from desktop

This commit is contained in:
pagedmov
2024-10-21 11:01:06 -04:00
parent 7f6bd833d4
commit c4f8ef9234
4 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
...
}: {
imports = [
./../../modules/sys
./../../modules/sys/configuration.nix
./hardware.nix
./boot.nix
./services.nix

View File

@@ -1,7 +1,6 @@
{pkgs, ...}: {
environment = {
variables = {
XCURSOR_SIZE = "24";
PATH = "${pkgs.clang-tools}/bin:$PATH";
};
shells = with pkgs; [

View File

@@ -18,23 +18,23 @@
boot.extraModulePackages = [];
fileSystems."/" = {
device = "/dev/disk/by-partlabel/disk-main-root";
device = "/dev/sda4";
fsType = "ext4";
};
fileSystems."/nix" = {
device = "/dev/disk/by-partlabel/disk-main-nix";
device = "/dev/sda3";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-partlabel/disk-main-ESP";
device = "/dev/sda2";
fsType = "vfat";
options = ["fmask=0077" "dmask=0077"];
};
fileSystems."/home" = {
device = "/dev/disk/by-partlabel/disk-main-home";
device = "/dev/sda5";
fsType = "ext4";
};