Satori: a.

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2022-03-28 04:57:27 +05:30
parent 04da549117
commit f89fefa53d
17 changed files with 221 additions and 152 deletions

View File

@@ -1,3 +0,0 @@
Satori is my home laptop\
Marisa is my Raspberry Pi 4 (B)\
Remilia is my cloud VM

3
hosts/README.org Normal file
View File

@@ -0,0 +1,3 @@
+ Satori is my home laptop
+ Marisa is my Raspberry Pi 4 (B)
+ Remilia is my cloud VM

View File

@@ -7,7 +7,6 @@
bc
gnumake
pciutils
git
ntfs3g
python3
htop
@@ -33,6 +32,8 @@
rnix-lsp
python3Packages.python-lsp-server
haskell-language-server
vulkan-tools
vulkan-headers
(steam.override {
extraLibraries = pkgs: [ pkgs.pipewire ];
extraProfile = ''
@@ -50,6 +51,13 @@
pinentryFlavor = "curses";
};
};
git = {
enable = true;
package = pkgs.master.git.override {
sendEmailSupport = true;
withManual = false;
};
};
zsh = {
enable = true;
promptInit = ''
@@ -67,7 +75,7 @@
elapsed=$(echo "scale=1; $elapsed/1000" | ${pkgs.bc}/bin/bc -l)
unit="s"
fi
if (($(echo "$elapsed > 60" | bc -l ))); then
if (( $(echo "$elapsed > 60" | ${pkgs.bc}/bin/bc -l) )) then
elapsed=$(echo "scale=2; $elapsed/60" | ${pkgs.bc}/bin/bc -l)
unit="m"
fi

View File

@@ -13,9 +13,13 @@
sessionVariables = {
QT_X11_NO_MITSHM = "1";
QT_QPA_PLATFORMTHEME = "gtk3";
HM_CONF_DIR = "/etc/nixos";
};
localBinInPath = true;
shellAliases = rec {
ec = "emacsclient";
ecc = ec + " -c";
};
};
security = {
sudo.enable = false;