Update NixOS config
This commit is contained in:
parent
a93c6c3e39
commit
c6e5489e20
5 changed files with 7 additions and 7 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
||||||
[submodule "dotfiles"]
|
[submodule "dotfiles"]
|
||||||
path = dotfiles
|
path = dotfiles
|
||||||
url = git@git.askiiart.net:askiiart/dotfiles
|
url = https://git.askiiart.net/askiiart/dotfiles
|
||||||
|
|
2
dotfiles
2
dotfiles
|
@ -1 +1 @@
|
||||||
Subproject commit bdb22ac5128ac61f0702ead6c4911ed39d716bb4
|
Subproject commit b25ad532750a4771774d1d664620b5b4d8887732
|
|
@ -29,10 +29,10 @@ in
|
||||||
boot.loader.grub.useOSProber = true;
|
boot.loader.grub.useOSProber = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
networking.hostName = "nixvm"; # Define your hostname.
|
networking.hostName = "foxbox"; # Define your hostname.
|
||||||
# Pick only one of the below networking options.
|
# Pick only one of the below networking options.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
|
|
|
@ -33,7 +33,6 @@ in
|
||||||
pkgs.mesa
|
pkgs.mesa
|
||||||
pkgs.meslo-lgs-nf
|
pkgs.meslo-lgs-nf
|
||||||
pkgs.libvirt
|
pkgs.libvirt
|
||||||
#pkgs.dotnet-runtime_7
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# enable opengl
|
# enable opengl
|
||||||
|
|
|
@ -16,8 +16,9 @@ if ! (command_exists "git" && command_exists "pass" && command_exists "dotnet" &
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
gpg --recv-key $KEY_FINGERPRINT
|
read -p "Insert the Yubikey, and press enter. Then enter fetch, quit, trust, 5, quit."
|
||||||
echo -e "5\ny\n" | gpg --command-fd 0 --edit-key "$KEY_FINGERPRINT" trust
|
gpg --edit-card
|
||||||
|
gpg --edit-key $KEY_FINGERPRINT
|
||||||
|
|
||||||
|
|
||||||
# Set up commit verification and gpg credential store
|
# Set up commit verification and gpg credential store
|
||||||
|
|
Loading…
Reference in a new issue