49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./verbatim.nix
|
|
./500G-disk.nix
|
|
|
|
../modules/system/graphics.nix
|
|
../modules/system/boot.nix
|
|
../modules/system/networking.nix
|
|
../modules/system/xdg-settings.nix
|
|
../modules/system/window-manager.nix
|
|
../modules/system/sddm.nix
|
|
../modules/system/main-user.nix
|
|
../modules/system/programs.nix
|
|
../modules/system/ssh.nix
|
|
../modules/system/sound.nix
|
|
../modules/system/printing.nix
|
|
../modules/system/input-handle.nix
|
|
../modules/system/keyboard.nix
|
|
../modules/system/locale.nix
|
|
|
|
../modules/dots/quick_shell/settings.nix
|
|
];
|
|
|
|
programs.niri.enable = true;
|
|
programs.xwayland = {
|
|
enable = true;
|
|
package = pkgs.xwayland-satellite;
|
|
};
|
|
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
nvidia.acceptLicense = true;
|
|
};
|
|
|
|
services.xserver.enable = true;
|
|
|
|
environment.shells = [pkgs.nushell];
|
|
|
|
home-manager.extraSpecialArgs = {inherit inputs;};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|