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"]
path = Packages/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 ./mpd_discord_richpresence.nix {})
(dwm.overrideAttrs (oldAttrs: rec {
src = fetchFromGitHub {
owner = "idcretard";
repo = "dwm";
rev = "363951cb05142f4c423af561a05658e74be7c768";
sha256 ="003sl6w5dkycw8wcymvhi843xjngsys6qsl3fc5b9vpyd1l7i0sr";
};
src = ./dwm;
# src = fetchFromGitHub {
# owner = "natto1784";
# repo = "dwm";
# rev = "363951cb05142f4c423af561a05658e74be7c768";
# sha256 ="003sl6w5dkycw8wcymvhi843xjngsys6qsl3fc5b9vpyd1l7i0sr";
# };
}))
(st.overrideAttrs (oldAttrs: rec {
src = fetchFromGitHub {
owner = "idcretard";
repo = "st";
rev = "0cd1e394e6d07c5f605ae23070c40de9690bafb1";
sha256 = "0riqg63aghx71v3rrpic3mxhcxqhry20312bicwbf3ks7ndl13hi";
};
src = ./st;
#src = fetchFromGitHub {
# owner = "natto1784";
# repo = "st";
# rev = "0cd1e394e6d07c5f605ae23070c40de9690bafb1";
# sha256 = "0riqg63aghx71v3rrpic3mxhcxqhry20312bicwbf3ks7ndl13hi";
# };
}))
(dmenu.overrideAttrs (oldAttrs: rec {
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, ... }:
{
users.users.otaku619 = {
users.users.natto = {
isNormalUser = true;
shell = pkgs.fish;
home = "/home/otaku619";
home = "/home/natto";
extraGroups = [ "wheel" "video" "audio" ];
};
}

View File

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

View File

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

View File

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