summaryrefslogtreecommitdiffstats
path: root/configuration.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2025-11-08 22:23:47 -0500
committerSkullheadx <admonty1@protonmail.com>2025-11-08 22:23:47 -0500
commit1fa69c67e86a70f98a48313a142efbbf4fec411c (patch)
tree784a93d9fd93f1535e202df7e418d802b54cce11 /configuration.nix
parentfix neovim (diff)
downloadnixos-1fa69c67e86a70f98a48313a142efbbf4fec411c.tar.gz
nixos-1fa69c67e86a70f98a48313a142efbbf4fec411c.tar.bz2
nixos-1fa69c67e86a70f98a48313a142efbbf4fec411c.zip
git stuff
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix18
1 files changed, 15 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix
index 5c9e725..62c04ca 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -6,7 +6,8 @@
pkgs,
inputs,
...
-}: {
+}:
+{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
@@ -17,7 +18,7 @@
boot.loader.efi.canTouchEfiVariables = true;
# zsh
- environment.shells = with pkgs; [fish];
+ environment.shells = with pkgs; [ fish ];
users.defaultUserShell = pkgs.fish;
programs.fish.enable = true;
@@ -56,7 +57,7 @@
"networkmanager"
"wheel"
];
- packages = with pkgs; [];
+ packages = with pkgs; [ ];
};
# Allow unfree packages
@@ -89,6 +90,17 @@
python314
zig
];
+
+ programs.git = {
+ enable = true;
+ config = {
+ user = {
+ name = "Skullheadx";
+ email = "admonty1@protonmail.com";
+ };
+ };
+ };
+
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play