move out secrets
This commit is contained in:
parent
5dfe41fda2
commit
f352ab13b0
7 changed files with 7 additions and 7 deletions
2
.gitattributes
vendored
2
.gitattributes
vendored
|
@ -1 +1 @@
|
||||||
common/users/user.nix filter=git-crypt diff=git-crypt
|
secrets.nix filter=git-crypt diff=git-crypt
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, secrets, ... }:
|
||||||
let
|
let
|
||||||
user = import ./user.nix;
|
user = (import ../../secrets.nix).users;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
users.mutableUsers = false;
|
users.mutableUsers = false;
|
||||||
|
|
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
{ hyprland, impermanence, nixvim, pkgs, ... }:
|
{ hyprland, impermanence, nixvim, pkgs, ... }:
|
||||||
let
|
let
|
||||||
user = import ../users/user.nix;
|
user = (import ../secrets.nix).users;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.fuse.userAllowOther = true;
|
programs.fuse.userAllowOther = true;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
let
|
let
|
||||||
user = import ../../users/user.nix;
|
user = (import ../../secrets.nix).users;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, secrets, ... }:
|
||||||
let
|
let
|
||||||
user = import ../../../users/user.nix;
|
user = (import ../../../secrets.nix).users;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
|
BIN
secrets.nix
Normal file
BIN
secrets.nix
Normal file
Binary file not shown.
Loading…
Reference in a new issue