environment changes

This commit is contained in:
ISnortPennies 2023-01-27 11:49:31 -05:00
parent b088bbcd57
commit aea8d79274
4 changed files with 7 additions and 14 deletions

View file

@ -14,12 +14,18 @@
SYSTEMD_PAGERSECURE = "true";
TERMINAL = "st";
};
shellAliases = {
ls = "exa --long --icons";
};
interactiveShellInit = ''
neofetch
'';
};
security.sudo = {
enable = true;
execWheelOnly = true;
extraConfig = ''
Defaults env_keep += "EDITOR VISUAL PAGER SYSTEMD_PAGERSECURE TERMINAL"
Defaults env_keep += "EDITOR VISUAL PAGER SYSTEMD_PAGERSECURE TERMINAL"
'';
};
#hardware stuff

View file

@ -65,7 +65,6 @@
};
nix = {
nixPath = [
"repl=/etc/nix/flake-channels/system/repl.nix"
"nixpkgs=/etc/nix/flake-channels/nixpkgs"
"home-manager=/etc/nix/flake-channels/home-manager"
];

View file

@ -8,10 +8,6 @@
syntaxHighlighting = {
enable = true;
};
interactiveShellInit = "neofetch";
shellAliases = {
ls = "exa --long --icons";
};
};
starship = {
enable = true;

View file

@ -1,8 +0,0 @@
let
flake = builtins.getFlake (toString ./.);
nixpkgs = import <nixpkgs> {};
in {
inherit flake;
inherit nixpkgs;
nixos = flake.nixosConfigurations;
}