minor changes, new machine

This commit is contained in:
randomuser 2023-08-01 15:39:35 -05:00
parent ff1cc15a38
commit c2d03922a5
2 changed files with 26 additions and 3 deletions

View File

@ -31,7 +31,6 @@ in {
environment.systemPackages = with pkgs; [
sx
fzy
gnupg
xclip
xcape
polybar
@ -52,6 +51,7 @@ in {
ledger
remind
python3
pinentry-curses
ungoogled-chromium
discord
@ -67,7 +67,7 @@ in {
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
pinentryFlavor = "gtk2";
enableSSHSupport = true;
};
@ -198,7 +198,10 @@ in {
environment.etc = {
"profile.local" = {
text = "source $HOME/.config/bash/profile";
text = "source /home/usr/.config/bash/profile";
};
"bashrc.local" = {
text = "source /home/usr/.config/bash/bashrc";
};
};

20
mlg.nix Normal file
View File

@ -0,0 +1,20 @@
{ lib, config, pkgs, ...}:
{
imports = [
./desktop.nix
];
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
grub = {
efiSupport = true;
device = "nodev";
};
};
networking.hostName = "mlg";
}