aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-12-08 09:57:18 +0100
committerKarel Kočí <cynerd@email.cz>2022-12-08 09:57:18 +0100
commit7ec62c5c0e7177c06ae21784a9dc256ee3f1a530 (patch)
treebf3e4bd90c69955498da8611e220d78d06a41c74 /nixos
parenta49e6748560b02f1c30e8740b25fe04cf21588b9 (diff)
downloadnixos-personal-7ec62c5c0e7177c06ae21784a9dc256ee3f1a530.tar.gz
nixos-personal-7ec62c5c0e7177c06ae21784a9dc256ee3f1a530.tar.bz2
nixos-personal-7ec62c5c0e7177c06ae21784a9dc256ee3f1a530.zip
nixos: add fwupd and few graphics utilities
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/desktop.nix6
-rw-r--r--nixos/modules/generic.nix1
2 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix
index 5208a3d..ff85ac5 100644
--- a/nixos/modules/desktop.nix
+++ b/nixos/modules/desktop.nix
@@ -53,7 +53,7 @@ in {
isync msmtp notmuch astroid
taskwarrior vdirsyncer khal khard
- gnupg pass pinentry-gnome pinentry-curses
+ gnupg pass pass-otp pinentry-gnome pinentry-curses
firefox chromium
ferdium signal-desktop
@@ -106,6 +106,10 @@ in {
# Latex
texlive.combined.scheme-full
+ # Gnome utils
+ gnome-firmware
+ gaphor
+
] ++ (optionals cnf.laptop [
# Power management
powertop
diff --git a/nixos/modules/generic.nix b/nixos/modules/generic.nix
index 7760470..a396816 100644
--- a/nixos/modules/generic.nix
+++ b/nixos/modules/generic.nix
@@ -38,6 +38,7 @@ in {
boot.kernelPackages = mkOverride 1100 pkgs.linuxPackages_latest;
boot.kernelParams = ["boot.shell_on_fail"];
hardware.enableAllFirmware = true;
+ services.fwupd.enable = true;
nixpkgs.config.allowUnfree = true;