2022-12-18 17:01:34 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
2022-12-29 20:48:40 +01:00
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
2022-12-18 17:07:40 +01:00
|
|
|
imports =
|
|
|
|
[
|
|
|
|
./hardware-configuration.nix
|
2022-12-29 15:05:26 +01:00
|
|
|
./modules/networks
|
2023-02-21 12:24:34 +01:00
|
|
|
./modules/greetd
|
2023-02-16 22:25:26 +01:00
|
|
|
./modules/snapper
|
2022-12-19 19:30:32 +01:00
|
|
|
../../shared/vim.nix
|
2022-12-27 17:46:57 +01:00
|
|
|
../../shared/sops.nix
|
2022-12-29 20:48:40 +01:00
|
|
|
../../shared/gpg.nix
|
2022-12-18 17:07:40 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
2023-01-28 14:53:23 +01:00
|
|
|
boot = {
|
|
|
|
loader.systemd-boot.enable = true;
|
2023-02-28 15:05:07 +01:00
|
|
|
loader.systemd-boot.editor = false;
|
2023-01-28 14:53:23 +01:00
|
|
|
loader.efi.canTouchEfiVariables = true;
|
2023-02-16 22:08:44 +01:00
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
2023-01-28 14:53:23 +01:00
|
|
|
};
|
2022-12-18 17:07:40 +01:00
|
|
|
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
console = {
|
2023-01-20 12:23:05 +01:00
|
|
|
keyMap = "dvorak";
|
2022-12-18 17:07:40 +01:00
|
|
|
font = "Lat2-Terminus16";
|
2023-02-12 14:56:42 +01:00
|
|
|
colors =
|
|
|
|
let
|
|
|
|
colors = config.home-manager.users.rouven.colorScheme.colors;
|
|
|
|
in
|
|
|
|
[
|
|
|
|
colors.base00
|
|
|
|
colors.base08
|
|
|
|
colors.base0A
|
|
|
|
colors.base0B
|
|
|
|
colors.base0D
|
|
|
|
colors.base0E
|
|
|
|
colors.base0C
|
|
|
|
colors.base05
|
|
|
|
|
|
|
|
colors.base03
|
|
|
|
colors.base08
|
|
|
|
colors.base0A
|
|
|
|
colors.base0B
|
|
|
|
colors.base0D
|
|
|
|
colors.base0E
|
|
|
|
colors.base0C
|
|
|
|
colors.base07
|
|
|
|
];
|
2022-12-18 17:07:40 +01:00
|
|
|
};
|
|
|
|
|
2023-01-20 22:12:45 +01:00
|
|
|
fonts.fonts = with pkgs; [
|
2023-02-25 16:30:02 +01:00
|
|
|
nerdfonts
|
2023-01-20 22:12:45 +01:00
|
|
|
noto-fonts
|
|
|
|
noto-fonts-cjk
|
|
|
|
noto-fonts-emoji
|
|
|
|
dejavu_fonts
|
|
|
|
];
|
2022-12-18 17:07:40 +01:00
|
|
|
|
|
|
|
# Enable sound.
|
|
|
|
sound.enable = true;
|
2023-01-21 14:44:23 +01:00
|
|
|
#hardware.pulseaudio.enable = true;
|
2022-12-18 17:07:40 +01:00
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
2023-01-21 14:44:23 +01:00
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
};
|
|
|
|
xdg.portal.wlr.enable = true;
|
|
|
|
|
2022-12-31 12:28:53 +01:00
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
2022-12-27 18:21:33 +01:00
|
|
|
# control display backlight
|
2022-12-19 19:30:32 +01:00
|
|
|
programs.light.enable = true;
|
|
|
|
|
|
|
|
services = {
|
2022-12-27 18:21:33 +01:00
|
|
|
blueman.enable = true; # bluetooth
|
|
|
|
devmon.enable = true; # automount stuff
|
2022-12-19 19:30:32 +01:00
|
|
|
printing.enable = true;
|
|
|
|
fprintd.enable = true; # log in using fingerprint
|
2022-12-27 18:21:33 +01:00
|
|
|
openssh.enable = true; # enabled ssh to have the host keys
|
2023-02-16 22:08:44 +01:00
|
|
|
btrfs.autoScrub.enable = true; # periodically check filesystem and repair it
|
2022-12-19 19:30:32 +01:00
|
|
|
};
|
2022-12-18 17:07:40 +01:00
|
|
|
|
2022-12-27 18:21:33 +01:00
|
|
|
programs.steam.enable = true; # putting steam in here cause in home manager it doesn't work
|
2022-12-18 17:07:40 +01:00
|
|
|
|
2023-02-14 21:50:36 +01:00
|
|
|
programs.ausweisapp = {
|
|
|
|
enable = true;
|
|
|
|
openFirewall = true;
|
|
|
|
};
|
|
|
|
|
2022-12-18 17:07:40 +01:00
|
|
|
virtualisation.libvirtd.enable = true;
|
2022-12-27 13:23:06 +01:00
|
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
2023-01-21 19:03:24 +01:00
|
|
|
|
2023-01-03 18:18:09 +01:00
|
|
|
# fix to enable secure boot in vms
|
|
|
|
environment.etc = {
|
|
|
|
"ovmf/edk2-x86_64-secure-code.fd" = {
|
|
|
|
source = config.virtualisation.libvirtd.qemu.package + "/share/qemu/edk2-x86_64-secure-code.fd";
|
|
|
|
};
|
|
|
|
|
|
|
|
"ovmf/edk2-i386-vars.fd" = {
|
|
|
|
source = config.virtualisation.libvirtd.qemu.package + "/share/qemu/edk2-i386-vars.fd";
|
|
|
|
mode = "0644";
|
|
|
|
user = "libvirtd";
|
2023-01-10 11:31:33 +01:00
|
|
|
};
|
2023-01-03 18:18:09 +01:00
|
|
|
};
|
2023-02-28 20:48:06 +01:00
|
|
|
|
|
|
|
services.logind = {
|
|
|
|
lidSwitch = "suspend-then-hibernate";
|
|
|
|
lidSwitchDocked = "hybrid-sleep";
|
|
|
|
lidSwitchExternalPower = "suspend";
|
|
|
|
};
|
|
|
|
systemd.sleep.extraConfig = ''
|
|
|
|
HibernateDelaySec=1h
|
|
|
|
'';
|
2023-01-10 11:31:33 +01:00
|
|
|
|
2022-12-29 20:48:40 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
wget
|
|
|
|
gcc
|
|
|
|
git
|
2023-01-28 22:28:56 +01:00
|
|
|
htop-vim
|
2022-12-29 20:48:40 +01:00
|
|
|
dig
|
|
|
|
traceroute
|
|
|
|
killall
|
2023-01-19 22:50:54 +01:00
|
|
|
python3
|
2023-01-27 00:24:24 +01:00
|
|
|
zip
|
|
|
|
unzip
|
2022-12-29 20:48:40 +01:00
|
|
|
];
|
|
|
|
|
2022-12-27 18:21:33 +01:00
|
|
|
system.stateVersion = "22.11";
|
2022-12-18 17:01:34 +01:00
|
|
|
}
|