17 lines
256 B
Nix
17 lines
256 B
Nix
{ nixpkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
./hw.nix
|
|
./dev.nix
|
|
./sw.nix
|
|
./fs.nix
|
|
./niri.nix
|
|
./home
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"slack"
|
|
];
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|