24 lines
No EOL
361 B
Nix
24 lines
No EOL
361 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../../common
|
|
../../common/desktop
|
|
../../modules/common
|
|
../../modules/nixos
|
|
];
|
|
|
|
services.hardware.openrgb.enable = true;
|
|
|
|
home-manager.users.wo2w = {
|
|
imports = [
|
|
../../modules/home
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
} |