64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{ pkgs, lib, inputs, ... }@args:
|
|
|
|
{
|
|
imports = [
|
|
../home
|
|
./1password.nix
|
|
./base.nix
|
|
./nix-index.nix
|
|
./packages.nix
|
|
./pipewire.nix
|
|
./swap.nix
|
|
./sway.nix
|
|
./nixvim.nix
|
|
inputs.private.nixosModules.taskwarrior
|
|
];
|
|
|
|
i18n.defaultLocale = "de_DE.UTF-8";
|
|
i18n.supportedLocales = [ "all" ];
|
|
|
|
environment = {
|
|
variables.EDITOR = "nvim";
|
|
variables.VISUAL = "nvim";
|
|
variables.TERMINAL = "kitty";
|
|
};
|
|
|
|
services = {
|
|
avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
publish = {
|
|
enable = lib.mkDefault true;
|
|
addresses = true;
|
|
};
|
|
};
|
|
blueman.enable = true;
|
|
chrony.enable = true;
|
|
flatpak.enable = true;
|
|
pcscd.enable = true;
|
|
printing.enable = true;
|
|
udev.packages = [ (pkgs.callPackage ../externals/rules/uhk.nix { }) ];
|
|
};
|
|
|
|
programs.ssh.startAgent = true;
|
|
|
|
programs.nix-ld.enable = true;
|
|
|
|
hardware = {
|
|
bluetooth.enable = true;
|
|
opengl.driSupport32Bit = (pkgs.system == "x86_64-linux");
|
|
steam-hardware.enable = true;
|
|
sane = {
|
|
enable = true;
|
|
brscan5.enable = (pkgs.system == "x86_64-linux");
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "qt5ct";
|
|
};
|
|
|
|
users.users.artemis.extraGroups = [ "scanner" ];
|
|
}
|