Sun Aug 21 08:02:30 PM CEST 2022
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
let unstable = import <nixos-unstable> { config.allowUnfree = true; };
|
||||
let
|
||||
unstable = import <nixos-unstable> { config.allowUnfree = true; };
|
||||
secrets = import ./secrets.nix;
|
||||
in {
|
||||
imports = [ <home-manager/nixos> ];
|
||||
|
||||
@ -10,6 +12,7 @@ in {
|
||||
|
||||
users.alex = {
|
||||
isNormalUser = true;
|
||||
hashedPassword = secrets.hashedPassword;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"docker"
|
||||
|
@ -1,6 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
secrets-desktop = import ../configs/secrets-desktop.nix;
|
||||
secrets = import ../configs/secrets.nix;
|
||||
be = import ../configs/borg-exclude.nix;
|
||||
in {
|
||||
|
Reference in New Issue
Block a user