changed username

This commit is contained in:
2021-04-03 22:06:18 +05:30
parent 86d0cd7c40
commit 9b9fd033d3
8 changed files with 31 additions and 21 deletions

6
.gitmodules vendored
View File

@@ -1,3 +1,9 @@
[submodule "Packages/scripts"] [submodule "Packages/scripts"]
path = Packages/scripts path = Packages/scripts
url = https://github.com/idcretard/custom-scripts url = https://github.com/idcretard/custom-scripts
[submodule "Packages/dwm"]
path = Packages/dwm
url = https://github.com/natto1784/dwm
[submodule "Packages/st"]
path = Packages/st
url = https://github.com/natto1784/st

1
Packages/dwm Submodule

Submodule Packages/dwm added at cd69bb00b0

View File

@@ -5,20 +5,22 @@
(callPackage ./customscripts.nix {}) (callPackage ./customscripts.nix {})
(callPackage ./mpd_discord_richpresence.nix {}) (callPackage ./mpd_discord_richpresence.nix {})
(dwm.overrideAttrs (oldAttrs: rec { (dwm.overrideAttrs (oldAttrs: rec {
src = fetchFromGitHub { src = ./dwm;
owner = "idcretard"; # src = fetchFromGitHub {
repo = "dwm"; # owner = "natto1784";
rev = "363951cb05142f4c423af561a05658e74be7c768"; # repo = "dwm";
sha256 ="003sl6w5dkycw8wcymvhi843xjngsys6qsl3fc5b9vpyd1l7i0sr"; # rev = "363951cb05142f4c423af561a05658e74be7c768";
}; # sha256 ="003sl6w5dkycw8wcymvhi843xjngsys6qsl3fc5b9vpyd1l7i0sr";
# };
})) }))
(st.overrideAttrs (oldAttrs: rec { (st.overrideAttrs (oldAttrs: rec {
src = fetchFromGitHub { src = ./st;
owner = "idcretard"; #src = fetchFromGitHub {
repo = "st"; # owner = "natto1784";
rev = "0cd1e394e6d07c5f605ae23070c40de9690bafb1"; # repo = "st";
sha256 = "0riqg63aghx71v3rrpic3mxhcxqhry20312bicwbf3ks7ndl13hi"; # rev = "0cd1e394e6d07c5f605ae23070c40de9690bafb1";
}; # sha256 = "0riqg63aghx71v3rrpic3mxhcxqhry20312bicwbf3ks7ndl13hi";
# };
})) }))
(dmenu.overrideAttrs (oldAttrs: rec { (dmenu.overrideAttrs (oldAttrs: rec {
configFile = writeText "config.def.h" (builtins.readFile ./dmenu/config.def.h); configFile = writeText "config.def.h" (builtins.readFile ./dmenu/config.def.h);

1
Packages/st Submodule

Submodule Packages/st added at 0cd1e394e6

View File

@@ -1,10 +1,10 @@
{lib, config, pkgs, ... }: {lib, config, pkgs, ... }:
{ {
users.users.otaku619 = { users.users.natto = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.fish; shell = pkgs.fish;
home = "/home/otaku619"; home = "/home/natto";
extraGroups = [ "wheel" "video" "audio" ]; extraGroups = [ "wheel" "video" "audio" ];
}; };
} }

View File

@@ -9,9 +9,9 @@
{ {
name = "zenwithmuqqs"; name = "zenwithmuqqs";
patch = null; patch = null;
structuredExtraConfig = '' structuredExtraConfig = with lib.kernel; {
SCHED_MUQQS y SCHED_MUQSS = yes;
''; };
ignoreConfigErrors = true; ignoreConfigErrors = true;
} }
]; ];

View File

@@ -27,17 +27,17 @@
fileSystems."/mnt/Stuff" = fileSystems."/mnt/Stuff" =
{ device = "/dev/sda2"; { device = "/dev/sda2";
fsType = "ntfs"; fsType = "ntfs";
options = ["uid=otaku619" "gid=users" "umask=0022" "rw"]; options = ["uid=natto" "gid=users" "umask=0022" "rw"];
}; };
fileSystems."/mnt/Games" = fileSystems."/mnt/Games" =
{ device = "/dev/sda4"; { device = "/dev/sda4";
fsType = "ntfs"; fsType = "ntfs";
options = ["uid=otaku619" "gid=users" "umask=0022" "rw"]; options = ["uid=natto" "gid=users" "umask=0022" "rw"];
}; };
fileSystems."/mnt/Extra" = fileSystems."/mnt/Extra" =
{ device = "/dev/sda3"; { device = "/dev/sda3";
fsType = "ntfs"; fsType = "ntfs";
options = ["uid=otaku619" "gid=users" "umask=0022" "rw"]; options = ["uid=natto" "gid=users" "umask=0022" "rw"];
}; };
fileSystems."/mnt/LinuxGames" = fileSystems."/mnt/LinuxGames" =
{ device = "/dev/sda5"; { device = "/dev/sda5";

View File

@@ -19,7 +19,7 @@
enable = true; enable = true;
extraRules = [ extraRules = [
{ {
users = [ "otaku619" ]; users = [ "natto" ];
keepEnv = true; keepEnv = true;
persist = true; persist = true;
} }