This commit is contained in:
Lilith 2025-03-14 16:15:08 +01:00
parent ee9c1366a9
commit 5d88fe7b77
Signed by: lilith
GPG key ID: 8712A0F317C37175
12 changed files with 289 additions and 97 deletions

View file

@ -1,4 +1,4 @@
{...}: {
{ zen-browser, ...}: {
imports = [
./audio.nix
./bluetooth.nix
@ -15,5 +15,6 @@
./syncthing.nix
./users.nix
./zsh.nix
zen-browser.nixosModules.zen-browser
];
}

View file

@ -26,6 +26,10 @@
"sync"
"code"
".keepass"
".local/share/PrismLauncher"
".local/share/Steam"
".local/share/lutris"
".local/share/games"
];
files = [];
};

View file

@ -1,5 +1,5 @@
{ sops-nix, ... }: {
imports = [ sops-nix.nixosModules.sops ];
sops.age.keyFile = /persist/data/home/lilith/.config/sops/age/keys.txt;
sops.age.keyFile = "/persist/data/home/lilith/.config/sops/age/keys.txt";
}

View file

@ -21,6 +21,7 @@
systemPackages = with pkgs; [
mangohud
protonup
protontricks
];
};
};

View file

@ -1,4 +1,4 @@
{stylix, pkgs, config, lib, ...}: {
{pkgs, stylix, config, lib, ...}: {
imports = [ stylix.nixosModules.stylix ];
options.auto_styling.enable = lib.mkEnableOption "Enable Stylix";