aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-05-20 19:53:11 +0530
committerAkshay Nair <phenax5@gmail.com>2025-05-20 19:53:11 +0530
commitbbf484a0965330aa729c9861d0385d0fccbb4da5 (patch)
treea75b7dbf3b79db721fb0d46f65a1f8ad8f31c3ca /home.nix
parentc45d004dd6a297f346fc302ed7a88304cf9f20fb (diff)
downloadnixos-config-bbf484a0965330aa729c9861d0385d0fccbb4da5.tar.gz
nixos-config-bbf484a0965330aa729c9861d0385d0fccbb4da5.zip
Remove unnecassary bits (alsa-utils udev rules, lsd, unclutter, overlays, keybase, firefox)
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix18
1 files changed, 2 insertions, 16 deletions
diff --git a/home.nix b/home.nix
index 76f56b9..f191bf9 100644
--- a/home.nix
+++ b/home.nix
@@ -6,11 +6,10 @@ in
imports = [
./overlays-home.nix
./modules/git.home.nix
- ./modules/keybase.home.nix
./modules/mpv.home.nix
./modules/music.home/default.nix
./modules/xresources.home.nix
- ./modules/firefox.home/default.nix
+ # ./modules/firefox.home/default.nix
./modules/newsboat.home/default.nix
];
@@ -67,21 +66,11 @@ in
# preset = "default";
};
- programs.lsd = {
- enable = true;
- enableAliases = true;
- };
-
services.syncthing = {
enable = true;
tray = false;
};
- services.unclutter = {
- enable = true;
- timeout = 5;
- };
-
services.udiskie = {
enable = true;
automount = true;
@@ -106,7 +95,7 @@ in
defaultCacheTtl = 864000;
enableSshSupport = false;
# pinentryPackage = pkgs.pinentry-qt;
- pinentryPackage = localPkgs.anypinentry;
+ pinentry.package = localPkgs.anypinentry;
# extraConfig = ''
# pinentry-program ${localPkgs.anypinentry}/bin/anypinentry
# '';
@@ -126,8 +115,5 @@ in
".wyrdrc".source = ./config/remind/.wyrdrc;
"scripts".source = ./scripts;
".config/bottom/bottom.toml".source = ./config/bottom.toml;
- # ".config/newsboat/config".source = ./config/newsboat/config;
- # ".config/newsboat/urls".source = ./config/newsboat/urls;
- # ".config/newsboat/opener.sh".source = ./config/newsboat/opener.sh;
};
}