refactor: complete rewrite
This commit is contained in:
parent
19a4bbda3c
commit
8e81943cf9
399 changed files with 3396 additions and 8042 deletions
11
modules/nixos/workstation/programs/1password.nix
Normal file
11
modules/nixos/workstation/programs/1password.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{config, ...}: let
|
||||
inherit (config.ooknet.host) admin;
|
||||
in {
|
||||
programs = {
|
||||
_1password.enable = true;
|
||||
_1password-gui = {
|
||||
enable = true;
|
||||
polkitPolicyOwners = ["${admin.name}"];
|
||||
};
|
||||
};
|
||||
}
|
||||
3
modules/nixos/workstation/programs/dconf.nix
Normal file
3
modules/nixos/workstation/programs/dconf.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.dconf = {enable = true;};
|
||||
}
|
||||
7
modules/nixos/workstation/programs/default.nix
Normal file
7
modules/nixos/workstation/programs/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./1password.nix
|
||||
./dconf.nix
|
||||
./kdeconnect.nix
|
||||
];
|
||||
}
|
||||
3
modules/nixos/workstation/programs/kdeconnect.nix
Normal file
3
modules/nixos/workstation/programs/kdeconnect.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.kdeconnect = {enable = true;};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue