move out secrets

This commit is contained in:
Adithya 2023-04-23 19:10:07 +05:30
parent 5dfe41fda2
commit f352ab13b0
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
7 changed files with 7 additions and 7 deletions

2
.gitattributes vendored
View file

@ -1 +1 @@
common/users/user.nix filter=git-crypt diff=git-crypt
secrets.nix filter=git-crypt diff=git-crypt

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{ pkgs, secrets, ... }:
let
user = import ./user.nix;
user = (import ../../secrets.nix).users;
in
{
users.mutableUsers = false;

Binary file not shown.

View file

@ -1,6 +1,6 @@
{ hyprland, impermanence, nixvim, pkgs, ... }:
let
user = import ../users/user.nix;
user = (import ../secrets.nix).users;
in
{
programs.fuse.userAllowOther = true;

View file

@ -1,6 +1,6 @@
{ ... }:
let
user = import ../../users/user.nix;
user = (import ../../secrets.nix).users;
in
{
programs.git = {

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{ pkgs, secrets, ... }:
let
user = import ../../../users/user.nix;
user = (import ../../../secrets.nix).users;
in
{
imports = [

BIN
secrets.nix Normal file

Binary file not shown.