aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/apps.nix4
-rw-r--r--[-rwxr-xr-x]nixos/cachix/cuda-maintainers.nix0
-rw-r--r--[-rwxr-xr-x]nixos/cachix/nix-community.nix0
-rw-r--r--nixos/environment.nix4
-rw-r--r--nixos/home.nix3
-rw-r--r--nixos/nvim.nix2
6 files changed, 8 insertions, 5 deletions
diff --git a/nixos/apps.nix b/nixos/apps.nix
index 1c1814b..8f98fd2 100644
--- a/nixos/apps.nix
+++ b/nixos/apps.nix
@@ -34,6 +34,6 @@
};
# for Localsend
- networking.firewall.allowedTCPPorts = [ 53317 ];
- networking.firewall.allowedUDPPorts = [ 53317 ];
+ networking.firewall.allowedTCPPorts = [ 53317 8081 ];
+ networking.firewall.allowedUDPPorts = [ 53317 8081 ];
}
diff --git a/nixos/cachix/cuda-maintainers.nix b/nixos/cachix/cuda-maintainers.nix
index b1d70d6..b1d70d6 100755..100644
--- a/nixos/cachix/cuda-maintainers.nix
+++ b/nixos/cachix/cuda-maintainers.nix
diff --git a/nixos/cachix/nix-community.nix b/nixos/cachix/nix-community.nix
index 7fc4c65..7fc4c65 100755..100644
--- a/nixos/cachix/nix-community.nix
+++ b/nixos/cachix/nix-community.nix
diff --git a/nixos/environment.nix b/nixos/environment.nix
index a0eb145..6627772 100644
--- a/nixos/environment.nix
+++ b/nixos/environment.nix
@@ -2,7 +2,7 @@
{
environment.systemPackages = with pkgs; [
gcc
- python311
+ # python312 # already added with nvim.nix
zoxide
starship
cmake
@@ -12,6 +12,8 @@
pipes
playerctl
libnotify
+ (pkgs.python313.withPackages (ps: with ps; [
+ ]))
];
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
diff --git a/nixos/home.nix b/nixos/home.nix
index 2f7fbf1..458b270 100644
--- a/nixos/home.nix
+++ b/nixos/home.nix
@@ -3,10 +3,11 @@
users.users.aargh = {
isNormalUser = true;
description = "Aargh";
- extraGroups = [ "networkmanager" "wheel" ];
+ extraGroups = [ "networkmanager" "wheel" "kvm" "adbusers" ];
packages = with pkgs; [];
shell = pkgs.fish;
};
+ programs.adb.enable = true;
programs.fish.enable = true;
home-manager.users.aargh = { pkgs, ... }: {
programs.firefox.enable = true;
diff --git a/nixos/nvim.nix b/nixos/nvim.nix
index 8eb0026..23ec64f 100644
--- a/nixos/nvim.nix
+++ b/nixos/nvim.nix
@@ -7,7 +7,7 @@ in {
go
gcc
cargo
- python311
+ python312
nodejs_20
lua
zig