24 lines
306 B
Nix
24 lines
306 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
|
|
nix.settings.experimental-features = [
|
|
"flakes"
|
|
"nix-command"
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
imports = [
|
|
./modules
|
|
# ./options.nix
|
|
];
|
|
|
|
environment.pathsToLink = [
|
|
"/share/applications"
|
|
"/share/xdg-desktop-portal"
|
|
];
|
|
}
|