user changes
This commit is contained in:
parent
615dce3e41
commit
f5bff2f354
1 changed files with 3 additions and 21 deletions
|
@ -1,24 +1,10 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
|
|
||||||
defaultUserName = "nixos";
|
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ../default.nix ];
|
imports = [ ../default.nix ];
|
||||||
|
|
||||||
users.users."${defaultUserName}" = {
|
|
||||||
isNormalUser = true;
|
|
||||||
password = "1234";
|
|
||||||
extraGroups = [
|
|
||||||
"dialout"
|
|
||||||
"feedbackd"
|
|
||||||
"networkmanager"
|
|
||||||
"video"
|
|
||||||
"wheel"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
mobile = {
|
mobile = {
|
||||||
beautification = {
|
beautification = {
|
||||||
silentBoot = lib.mkDefault true;
|
silentBoot = lib.mkDefault true;
|
||||||
|
@ -30,14 +16,10 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.openssh.enable = true;
|
#services.openssh.enable = true;
|
||||||
#services.pipewire = {
|
|
||||||
# enable = true;
|
|
||||||
# pulse.enable = true;
|
|
||||||
#};
|
|
||||||
services.xserver.desktopManager.phosh = {
|
services.xserver.desktopManager.phosh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
user = defaultUserName;
|
user = "stitchynyan";
|
||||||
group = "users";
|
group = "users";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue