https://www.youtube.com/watch?v=sLWQ4Gx88h4 https://www.youtube.com/watch?v=4yiMbP_ZySQ
117 lines
1.7 KiB
Nix
117 lines
1.7 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common
|
|
|
|
./hardware-configuration.nix
|
|
./modules
|
|
./secrets.nix
|
|
./services
|
|
|
|
../../users/opdavies.nix
|
|
];
|
|
|
|
cli = {
|
|
kanata = {
|
|
enable = true;
|
|
|
|
devices = [
|
|
"/dev/input/by-path/platform-i8042-serio-0-event-kbd"
|
|
];
|
|
};
|
|
|
|
password-store = {
|
|
enable = true;
|
|
|
|
extensions = with pkgs.passExtensions; [
|
|
pass-audit
|
|
pass-otp
|
|
pass-update
|
|
];
|
|
};
|
|
};
|
|
|
|
core = {
|
|
bluetooth.enable = true;
|
|
openssh.enable = true;
|
|
pipewire.enable = true;
|
|
xbanish.enable = true;
|
|
zram.enable = true;
|
|
};
|
|
|
|
desktop = {
|
|
dconf.enable = true;
|
|
dwm.enable = true;
|
|
fonts.enable = true;
|
|
media.makemkv.enable = true;
|
|
st.enable = true;
|
|
thunar.enable = true;
|
|
};
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.extraConfig = ''
|
|
DefaultTimeoutStopSec=10s
|
|
'';
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
security = {
|
|
polkit.enable = true;
|
|
rtkit.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
abook
|
|
acpi
|
|
arandr
|
|
backup-websites
|
|
brightnessctl
|
|
build-glove80
|
|
cdrkit
|
|
cpufrequtils
|
|
displayselect
|
|
dvdbackup
|
|
dvdplusrwtools
|
|
ffmpegthumbnailer
|
|
gimp
|
|
gscan2pdf
|
|
gtypist
|
|
hunspellDicts.en-gb-large
|
|
isync
|
|
kdePackages.kdenlive
|
|
kdePackages.okular
|
|
libnotify
|
|
libreoffice
|
|
meslo-lg
|
|
obs-studio
|
|
pam_gnupg
|
|
pamixer
|
|
pavucontrol
|
|
peek
|
|
pmutils
|
|
shotwell
|
|
slack
|
|
sxiv
|
|
tailscale
|
|
ttyper
|
|
upload-to-files
|
|
xcape
|
|
xsel
|
|
yt-dlp
|
|
zeroad
|
|
zoom-us
|
|
];
|
|
}
|