diff options
author | Freya Murphy <freya@freyacat.org> | 2025-01-24 13:06:22 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-01-24 13:06:22 -0500 |
commit | d999d4d0e68b9d7cfa0f477cdbac8fe82850ae78 (patch) | |
tree | af2100aabc890c90c52b26640b07e6d342551794 /flake.nix | |
parent | refactor home packages, more labels (diff) | |
download | dotfiles-nix-d999d4d0e68b9d7cfa0f477cdbac8fe82850ae78.tar.gz dotfiles-nix-d999d4d0e68b9d7cfa0f477cdbac8fe82850ae78.tar.bz2 dotfiles-nix-d999d4d0e68b9d7cfa0f477cdbac8fe82850ae78.zip |
use sops-nix for secrets
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -16,6 +16,9 @@ # hyprland hy3 hy3.url = "github:outfoxxed/hy3"; hy3.inputs.hyprland.follows = "hyprland"; + # sops + sops-nix.url = "github:Mic92/sops-nix"; + sops-nix.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { nixpkgs, ... }@inputs: @@ -23,7 +26,7 @@ options = import ./options.nix; in rec { nixosConfigurations = { - shinji = import ./hosts/shinji.nix { inherit inputs options; }; + shinji = import ./hosts/shinji { inherit inputs options; }; }; homeConfigurations = { |