feat: switch to new roles

This commit is contained in:
Ahwx 2024-12-23 22:39:47 +01:00
parent 97f3026564
commit 118e4a20ce
2 changed files with 10 additions and 2 deletions

View file

@ -3,6 +3,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./../../modules/core ./../../modules/core
./../../modules/core/virtualization.nix
inputs.nixos-hardware.nixosModules.framework-13-7040-amd inputs.nixos-hardware.nixosModules.framework-13-7040-amd
]; ];
@ -16,7 +17,11 @@
fwupd # Update firmware for Framework Laptop 13 fwupd # Update firmware for Framework Laptop 13
]; ];
liv.laptop.enable = true; liv = {
laptop.enable = true;
desktop.enable = true;
creative.enable = true;
};
services.hardware.bolt.enable = true; services.hardware.bolt.enable = true;

View file

@ -12,7 +12,10 @@
cpuFreqGovernor = lib.mkDefault "performance"; cpuFreqGovernor = lib.mkDefault "performance";
}; };
liv.laptop.enable = false; liv = {
desktop.enable = true;
creative.enable = true;
};
networking = { networking = {
hostName = "yoshino"; hostName = "yoshino";