Sun Aug 21 08:02:30 PM CEST 2022

This commit is contained in:
Alexander Szczepanski
2022-08-21 20:02:30 +02:00
parent 0eaaa94469
commit 28292d48cb
2 changed files with 4 additions and 2 deletions

View File

@ -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"