smolder: include workstation stuff, I'm going to test mesa here anyway

This commit is contained in:
Artemis Tosini 2023-12-04 23:34:25 +00:00
parent e145cadab0
commit 9a89e2eb5e
Signed by: artemist
GPG key ID: EE5227935FE3FF18
2 changed files with 5 additions and 7 deletions

View file

@ -1,5 +1,8 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
boot = { boot = {
loader.grub.enable = false;
loader.generic-extlinux-compatible.enable = true;
kernelPackages = pkgs.linuxPackages_testing; kernelPackages = pkgs.linuxPackages_testing;
tmp.cleanOnBoot = true; tmp.cleanOnBoot = true;

View file

@ -2,19 +2,14 @@
{ {
imports = [ imports = [
../../sets/base.nix
../../sets/builder.nix ../../sets/builder.nix
../../sets/nixvim.nix
../../sets/sshd.nix ../../sets/sshd.nix
../../home ../../sets/workstation.nix
./hardware-configuration.nix
./boot-config.nix ./boot-config.nix
./hardware-configuration.nix
]; ];
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
networking.hostName = "smolder"; networking.hostName = "smolder";
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }