feat: use home manager to install insed of home.packages
This commit is contained in:
parent
42a35c9cf0
commit
96d7683ff2
4 changed files with 12 additions and 11 deletions
|
|
@ -10,8 +10,6 @@
|
|||
|
||||
config = lib.mkIf config.crony.desktop.enable {
|
||||
home.packages = with pkgs; [
|
||||
keepassxc
|
||||
vesktop
|
||||
piper
|
||||
galaxy-buds-client
|
||||
nicotine-plus
|
||||
|
|
@ -21,6 +19,12 @@
|
|||
cameractrls-gtk4
|
||||
];
|
||||
|
||||
# Install keepassxc
|
||||
programs.keepassxc.enable = true;
|
||||
|
||||
# Install vesktop
|
||||
programs.vesktop.enable = true;
|
||||
|
||||
# Install thunderbird
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -85,9 +85,9 @@ in {
|
|||
};
|
||||
|
||||
config = lib.mkIf config.crony.hyprland.enable {
|
||||
home.packages = with pkgs; [
|
||||
hyprpolkitagent
|
||||
];
|
||||
# Enable hyprpolkitagent
|
||||
services.hyprpolkitagent.enable = true;
|
||||
systemd.user.services.hyprpolkitagent.Install.WantedBy = lib.mkForce [];
|
||||
|
||||
# Enable hyprpaper
|
||||
services.hyprpaper.enable = true;
|
||||
|
|
|
|||
|
|
@ -36,11 +36,6 @@ in {
|
|||
};
|
||||
|
||||
config = lib.mkIf config.crony.restic.enable {
|
||||
# Install restic package
|
||||
home.packages = with pkgs; [
|
||||
restic
|
||||
];
|
||||
|
||||
# Restic home manager service
|
||||
services.restic = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -52,9 +52,11 @@
|
|||
home.packages = with pkgs; [
|
||||
unzip
|
||||
p7zip
|
||||
aria2
|
||||
];
|
||||
|
||||
# Install aria2
|
||||
programs.aria2.enable = true;
|
||||
|
||||
# Install fzf
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue