diff options
| author | adikro <adikro@disroot.org> | 2025-12-20 15:25:38 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-20 15:25:38 +0100 |
| commit | c1d9af57156f3c95590d9a12c394ee064df9696e (patch) | |
| tree | 7e515761590c510c30329ef8548c7d84a8e95aaa /sys/srv/files.nix | |
| parent | 791bc419b6dac7c70951981ef6b34cdf85828470 (diff) | |
added disko config for laptop, added storage and memory modules
Diffstat (limited to 'sys/srv/files.nix')
| -rw-r--r-- | sys/srv/files.nix | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sys/srv/files.nix b/sys/srv/files.nix index bbd6ca8..9b5759e 100644 --- a/sys/srv/files.nix +++ b/sys/srv/files.nix @@ -1,16 +1,15 @@ { config, lib, pkgs, ... }: let - cfg = config.szpont.sys.srv.files; + cfg = config.sys.srv.files; in { - options.szpont.sys.srv.files = { - thunar.enable = lib.mkEnableOption "thunar file manager"; - utils.enable = lib.mkEnableOption "compression and trash utilities"; + options.sys.srv.files = { + thunar.enable = lib.mkEnableOption "enables the thunar file manager"; + utils.enable = lib.mkEnableOption "enables compression and trash utilities"; }; - config = lib.mkMerge [ { - szpont.sys.srv.files.utils.enable = lib.mkDefault cfg.thunar.enable; + sys.srv.files.utils.enable = lib.mkDefault cfg.thunar.enable; } (lib.mkIf cfg.thunar.enable { @@ -22,7 +21,10 @@ in thunar-vcs-plugin ]; }; - services.gnome.gnome-keyring.enable = true; + services = { + tumbler.enable = true; + gnome.gnome-keyring.enable = true; + }; environment.systemPackages = with pkgs; [ file-roller ]; }) |
