vaultwarden
This commit is contained in:
parent
b5b763bd40
commit
9d661deba1
7 changed files with 90 additions and 82 deletions
58
home/workstation.nix
Normal file
58
home/workstation.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
./modules/terminal.nix
|
||||
./modules/scripts.nix
|
||||
./modules/email.nix
|
||||
./modules/mpd.nix
|
||||
./modules/menu.nix
|
||||
./modules/scripts.nix
|
||||
|
||||
./programs/scripts.nix
|
||||
{
|
||||
options.windowManager.modifierKey = lib.mkOption {default = "SUPER";};
|
||||
}
|
||||
];
|
||||
|
||||
programs.menu = {
|
||||
package = pkgs.tofi;
|
||||
dmenuCommand = "${pkgs.tofi}/bin/tofi --fuzzy-match true";
|
||||
drunCommand = "${pkgs.tofi}/bin/tofi-drun --drun-launch true";
|
||||
};
|
||||
roles.mpd.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
wl-clipboard
|
||||
playerctl
|
||||
quickemu
|
||||
];
|
||||
|
||||
services.udiskie = {
|
||||
enable = true;
|
||||
notify = true;
|
||||
};
|
||||
|
||||
programs.rbw.settings.pinentry = "gnome3";
|
||||
|
||||
home.file.".icons/default".source = "${pkgs.vanilla-dmz}/share/icons/Vanilla-DMZ";
|
||||
home.file.".config/pipewire/pipewire.conf.d/raop-discover.conf".text = ''
|
||||
context.modules = [
|
||||
{
|
||||
name = libpipewire-module-raop-discover
|
||||
args = { }
|
||||
}
|
||||
]
|
||||
'';
|
||||
|
||||
services.kdeconnect = {
|
||||
enable = true;
|
||||
indicator = true;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue