nix-config/hosts/t480/configuration.nix

109 lines
1.6 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
2025-03-21 15:01:39 +00:00
{
imports = [
../common
2025-03-21 15:01:39 +00:00
./hardware-configuration.nix
./modules
2025-03-21 15:01:39 +00:00
./secrets.nix
./services.nix
2025-03-21 15:01:39 +00:00
../../users/opdavies.nix
];
features = {
2025-04-23 19:50:10 +01:00
cli.password-store = {
enable = true;
extensions = with pkgs.passExtensions; [
pass-audit
pass-otp
pass-update
];
};
2025-04-23 19:38:55 +01:00
core = {
bluetooth.enable = true;
openssh.enable = true;
pipewire.enable = true;
xbanish.enable = true;
zram.enable = true;
};
2025-04-05 09:50:53 +01:00
desktop = {
dconf.enable = true;
dwm.enable = true;
fonts.enable = true;
media.makemkv.enable = true;
st.enable = true;
thunar.enable = true;
};
};
2025-03-21 15:01:39 +00:00
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; [
2025-04-05 09:00:00 +01:00
abook
2025-04-06 00:23:37 +01:00
acpi
arandr
2025-04-05 23:17:12 +01:00
backup-websites
2025-04-06 00:23:37 +01:00
brightnessctl
2025-04-06 00:04:31 +01:00
build-glove80
2025-04-28 17:51:58 +01:00
cdrkit
2025-04-06 00:23:37 +01:00
cpufrequtils
2025-04-05 23:17:12 +01:00
displayselect
2025-04-28 17:51:58 +01:00
dvdbackup
dvdplusrwtools
2025-04-06 00:23:37 +01:00
ffmpegthumbnailer
2025-04-08 22:43:20 +01:00
gimp
2025-04-06 00:04:31 +01:00
gscan2pdf
2025-03-21 15:01:39 +00:00
gtypist
2025-04-06 00:23:37 +01:00
hunspellDicts.en-gb-large
2025-04-05 23:17:12 +01:00
isync
2025-04-08 22:43:20 +01:00
kdePackages.kdenlive
2025-04-06 00:04:31 +01:00
kdePackages.okular
2025-04-06 00:23:37 +01:00
libnotify
libreoffice
2025-04-06 00:04:31 +01:00
meslo-lg
obs-studio
2025-03-21 15:01:39 +00:00
pam_gnupg
2025-04-06 00:04:31 +01:00
pamixer
pavucontrol
2025-04-05 09:00:00 +01:00
peek
2025-04-06 00:23:37 +01:00
pmutils
shotwell
2025-04-05 09:00:00 +01:00
slack
2025-03-21 15:01:39 +00:00
sxiv
ttyper
2025-04-05 23:17:12 +01:00
upload-to-files
2025-04-06 00:04:31 +01:00
xcape
xsel
2025-03-21 15:01:39 +00:00
yt-dlp
2025-04-05 09:00:00 +01:00
zeroad
2025-04-05 09:00:00 +01:00
zoom-us
2025-03-21 15:01:39 +00:00
];
}