mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-15 06:30:10 +03:00
123
This commit is contained in:
+1
-1
@@ -47,7 +47,7 @@ in
|
|||||||
download = "${config.home.homeDirectory}/Downloads";
|
download = "${config.home.homeDirectory}/Downloads";
|
||||||
music = "${config.home.homeDirectory}/Music";
|
music = "${config.home.homeDirectory}/Music";
|
||||||
pictures = "${config.home.homeDirectory}/Pictures";
|
pictures = "${config.home.homeDirectory}/Pictures";
|
||||||
# publicShare = "${config.home.homeDirectory}/Misc/Public";
|
publicShare = "${config.home.homeDirectory}/Misc/Public";
|
||||||
templates = null;
|
templates = null;
|
||||||
videos = "${config.home.homeDirectory}/Pictures/Videos";
|
videos = "${config.home.homeDirectory}/Pictures/Videos";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,19 +4,20 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
${user} = "snity"
|
||||||
|
in
|
||||||
{
|
{
|
||||||
xlib.device.username = "snity";
|
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
users = {
|
users = {
|
||||||
"${xlib.device.username}" = {
|
"${user}" = {
|
||||||
name = "${xlib.device.username}";
|
name = "${user}";
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
group = "users";
|
group = "users";
|
||||||
description = "Snity";
|
description = "Snity";
|
||||||
hashedPasswordFile = "$y$j9T$851xwObfIp7SYzIyFtH.k1$mNofT2sxEAV50Kxgmwvqc6Kj/3B/fJoPP8qgn./siEB"; # hashed_password
|
hashedPasswordFile = "$y$j9T$851xwObfIp7SYzIyFtH.k1$mNofT2sxEAV50Kxgmwvqc6Kj/3B/fJoPP8qgn./siEB"; # hashed_password
|
||||||
homeMode = "700";
|
homeMode = "700";
|
||||||
home = "/home/${xlib.device.username}";
|
home = "/home/${user}";
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"audio"
|
"audio"
|
||||||
"disk"
|
"disk"
|
||||||
|
|||||||
+4
-4
@@ -6,11 +6,11 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
# imports = [
|
||||||
./others
|
# ./others
|
||||||
];
|
# ];
|
||||||
|
|
||||||
xlib.device.username = lib.mkDefault "oqyude";
|
xlib.device.username = "oqyude";
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
users = {
|
users = {
|
||||||
|
|||||||
Reference in New Issue
Block a user