main
Elnu 2 months ago
parent 1c504889a1
commit e0407a761b

@ -32,7 +32,7 @@
inkscape
obs-studio
qbittorrent
pureref
#pureref
libreoffice
gnome.ghex
evince

@ -120,6 +120,30 @@ in
];
};
t480 = lib.nixosSystem {
inherit system;
specialArgs = { inherit user; };
modules = configImports ++ [
./thinkpads
./desktop.nix
{
boot.loader.grub.gfxmodeEfi = "1920x1080";
networking.hostName = "t480";
}
home-manager.nixosModules.home-manager {
home-manager = {
useUserPackages = true;
extraSpecialArgs = hmArgs;
users.${user} = {
imports = desktopHmImports ++ [
(import ./thinkpads/home.nix)
];
};
};
}
];
};
virtualbox = lib.nixosSystem {
inherit system;
specialArgs = { inherit user; };

@ -11,6 +11,7 @@
grub = {
efiSupport = true;
device = "nodev";
useOSProber = true;
};
};
@ -24,9 +25,9 @@
};
# audio controls and polybar module don't work on pipewire
hardware.pulseaudio = {
enable = true;
support32Bit = true;
};
services.pipewire.enable = false;
# hardware.pulseaudio = {
# enable = true;
# support32Bit = true;
# };
# services.pipewire.enable = false;
}

Loading…
Cancel
Save