Some checks failed
Update Nix Flake / update-flake (push) Failing after 12s
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{
|
|
pwd,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
"${pwd}/features-nixos/global"
|
|
"${pwd}/features-nixos/users/julian"
|
|
"${pwd}/features-nixos/users/wolfi"
|
|
"${pwd}/features-nixos/optional/binarycaches.nix"
|
|
|
|
"${pwd}/features-nixos/optional/remote-builder.nix"
|
|
"${pwd}/features-nixos/optional/boot-efi.nix"
|
|
|
|
"${pwd}/features-nixos/optional/greetd.nix"
|
|
"${pwd}/features-nixos/optional/authentication.nix"
|
|
"${pwd}/features-nixos/optional/pcmanfm.nix"
|
|
"${pwd}/features-nixos/optional/pipewire.nix"
|
|
|
|
"${pwd}/features-nixos/optional/openssh.nix"
|
|
|
|
"${pwd}/features-nixos/optional/virtualbox.nix"
|
|
|
|
"${pwd}/features-nixos/optional/podman.nix"
|
|
"${pwd}/features-nixos/optional/wireshark.nix"
|
|
"${pwd}/features-nixos/optional/flatpak.nix"
|
|
];
|
|
|
|
networking.hostName = "kardorf";
|
|
system.stateVersion = "22.11";
|
|
|
|
# Not using the drivers leads to way better results
|
|
# services.xserver.videoDrivers = [ "nvidia" ];
|
|
|
|
networking.networkmanager.insertNameservers = ["192.168.3.252"];
|
|
|
|
programs.kdeconnect.enable = true;
|
|
programs.steam.enable = true;
|
|
|
|
programs.hyprland.enable = true;
|
|
services.desktopManager.plasma6.enable = true;
|
|
|
|
# Enable CUPS to print documents.
|
|
services.printing.enable = true;
|
|
services.printing.browsing = true;
|
|
services.printing.drivers = with pkgs; [gutenprint];
|
|
|
|
services.libinput.enable = true;
|
|
}
|