fix: udiskie not being started

This commit is contained in:
Jacob Bachmann 2023-12-13 14:19:45 +01:00
parent 88615faff0
commit 610e399cff
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
6 changed files with 8 additions and 10 deletions

View file

@ -5,9 +5,10 @@
# TODO enable ability to switch between stable and unstable # TODO enable ability to switch between stable and unstable
# TODO enable ability to include or exclude unfree software # TODO enable ability to include or exclude unfree software
#nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05"; #nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
#nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
#nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
#nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
#home-manager.url = "github:nix-community/home-manager/release-23.05"; #home-manager.url = "github:nix-community/home-manager/release-23.05";
#home-manager.inputs.nixpkgs.follows = "nixpkgs"; #home-manager.inputs.nixpkgs.follows = "nixpkgs";

View file

@ -16,5 +16,5 @@
nup = "sudo nix-channel --update"; nup = "sudo nix-channel --update";
nuf = "sudo nix flake update --nix-path /etc/nixos"; nuf = "sudo nix flake update --nix-path /etc/nixos";
ngc = "sudo nix-collect-garbage -d"; ngc = "sudo nix-collect-garbage -d";
wip = "curl -s 'https://nordvpn.com/wp-admin/admin-ajax.php?action=get_user_info_data' | jq"; lsip = "curl -s 'https://nordvpn.com/wp-admin/admin-ajax.php?action=get_user_info_data' | jq";
} }

View file

@ -9,7 +9,6 @@
./packages.nix ./packages.nix
./ssh.nix ./ssh.nix
./tmux.nix ./tmux.nix
./udiskie.nix
./zsh.nix ./zsh.nix
]; ];
} }

View file

@ -20,6 +20,7 @@ in {
pavucontrol # control audio pavucontrol # control audio
playerctl # control player playerctl # control player
networkmanagerapplet # control network networkmanagerapplet # control network
udiskie # automount usb
blueman # control bluetooth blueman # control bluetooth
nextcloud-client # nextcloud client to connect to any instance nextcloud-client # nextcloud client to connect to any instance
plasma5Packages.kdeconnect-kde # sync phone and pc plasma5Packages.kdeconnect-kde # sync phone and pc
@ -35,6 +36,7 @@ in {
{ command = "${feh}/bin/feh --bg-fill ${common.wallpaper}"; } { command = "${feh}/bin/feh --bg-fill ${common.wallpaper}"; }
{ command = "${networkmanagerapplet}/bin/nm-applet"; } { command = "${networkmanagerapplet}/bin/nm-applet"; }
{ command = "${blueman}/bin/blueman-applet"; } { command = "${blueman}/bin/blueman-applet"; }
{ command = "${udiskie}/bin/udiskie --tray"; }
{ command = "${nextcloud-client}/bin/nextcloud"; } { command = "${nextcloud-client}/bin/nextcloud"; }
{ command = "${plasma5Packages.kdeconnect-kde}/bin/kdeconnect-indicator"; } { command = "${plasma5Packages.kdeconnect-kde}/bin/kdeconnect-indicator"; }
]; ];

View file

@ -19,6 +19,7 @@ in
pavucontrol # control audio pavucontrol # control audio
playerctl # control player playerctl # control player
networkmanagerapplet # control network networkmanagerapplet # control network
udiskie # automount usb
dracula-theme # gtk theme dracula-theme # gtk theme
gnome3.adwaita-icon-theme # default gnome cursors gnome3.adwaita-icon-theme # default gnome cursors
wl-clipboard # cli tool to manage wayland clipboard wl-clipboard # cli tool to manage wayland clipboard
@ -80,6 +81,7 @@ in
{ command = "${kanshi}/bin/kanshi"; } { command = "${kanshi}/bin/kanshi"; }
{ command = "${networkmanagerapplet}/bin/nm-applet"; } { command = "${networkmanagerapplet}/bin/nm-applet"; }
{ command = "${blueman}/bin/blueman-applet"; } { command = "${blueman}/bin/blueman-applet"; }
{ command = "${udiskie}/bin/udiskie --tray"; }
{ command = "${swaynotificationcenter}/bin/swaync"; } { command = "${swaynotificationcenter}/bin/swaync"; }
{ command = "${nextcloud-client}/bin/nextcloud"; } { command = "${nextcloud-client}/bin/nextcloud"; }
{ command = "${plasma5Packages.kdeconnect-kde}/bin/kdeconnect-indicator"; } { command = "${plasma5Packages.kdeconnect-kde}/bin/kdeconnect-indicator"; }

View file

@ -1,6 +0,0 @@
{ ... }: {
services.udiskie = {
enable = true;
tray = "always";
};
}