mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
Switch to nixfmt
This commit is contained in:
parent
1d70117186
commit
b38d2df431
55 changed files with 1559 additions and 1540 deletions
|
|
@ -1,19 +1,20 @@
|
|||
{config, ...}: {
|
||||
imports = [../common.nix];
|
||||
{ config, ... }:
|
||||
{
|
||||
imports = [ ../common.nix ];
|
||||
|
||||
sops.secrets.seb-password.neededForUsers = true;
|
||||
sops.secrets.seb-password.neededForUsers = true;
|
||||
|
||||
users.users.seb = {
|
||||
isNormalUser = true;
|
||||
description = "Sebastian Stork";
|
||||
hashedPasswordFile = config.sops.secrets.seb-password.path;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"networkmanager"
|
||||
"libvirtd"
|
||||
"video"
|
||||
];
|
||||
};
|
||||
users.users.seb = {
|
||||
isNormalUser = true;
|
||||
description = "Sebastian Stork";
|
||||
hashedPasswordFile = config.sops.secrets.seb-password.path;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"networkmanager"
|
||||
"libvirtd"
|
||||
"video"
|
||||
];
|
||||
};
|
||||
|
||||
home-manager.users.seb = ./home.nix;
|
||||
home-manager.users.seb = ./home.nix;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue