t480: init
This commit is contained in:
parent
1c504889a1
commit
e0407a761b
3 changed files with 31 additions and 6 deletions
|
@ -32,7 +32,7 @@
|
||||||
inkscape
|
inkscape
|
||||||
obs-studio
|
obs-studio
|
||||||
qbittorrent
|
qbittorrent
|
||||||
pureref
|
#pureref
|
||||||
libreoffice
|
libreoffice
|
||||||
gnome.ghex
|
gnome.ghex
|
||||||
evince
|
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 {
|
virtualbox = lib.nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
specialArgs = { inherit user; };
|
specialArgs = { inherit user; };
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
grub = {
|
grub = {
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
device = "nodev";
|
device = "nodev";
|
||||||
|
useOSProber = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -24,9 +25,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# audio controls and polybar module don't work on pipewire
|
# audio controls and polybar module don't work on pipewire
|
||||||
hardware.pulseaudio = {
|
# hardware.pulseaudio = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
support32Bit = true;
|
# support32Bit = true;
|
||||||
};
|
# };
|
||||||
services.pipewire.enable = false;
|
# services.pipewire.enable = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue