Compare commits

..

4 Commits

Author SHA1 Message Date
Lennart J. Kurzweg (Nx2)
0953c65a9f Merge branch 'master' of ssh://ssh.nx2.site:50022/nx2/dotfiles 2026-01-17 17:25:23 +00:00
Lennart J. Kurzweg (Nx2)
02231f2693 wsl fix 2026-01-17 17:25:14 +00:00
Lennart J. Kurzweg (Nx2)
48f246429b uv 2026-01-17 17:24:56 +00:00
Lennart J. Kurzweg (Nx2)
bff8042d85 asciinema 2026-01-17 17:24:51 +00:00
3 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
{ pkgs, ... }@all: with all; { { pkgs, ... }@all: with all; {
home.packages = with pkgs; [ home.packages = with pkgs; [
asciinema
bat bat
cmake cmake
cmatrix cmatrix

View File

@@ -5,6 +5,8 @@
requests requests
# debugpy # debugpy
black black
uv
uv-build
]); ]);
in { in {
packages = [ packages = [

View File

@@ -9,7 +9,7 @@
./system-modules/users.nix ./system-modules/users.nix
]; ];
environment.systemPackages = import ./system-modules/base-packages.nix pkgs; environment.systemPackages = import ./system-modules/base-packages.nix pkgs;
system.stateVersion = hypr.pkgs-version; system.stateVersion = hyper.pkgs-version;
wsl = { wsl = {
defaultUser = hyper.user; defaultUser = hyper.user;
enable = true; enable = true;
@@ -27,4 +27,5 @@
}; };
}; };
nixpkgs.hostPlatform = hyper.system; nixpkgs.hostPlatform = hyper.system;
services.upower.enable = true;
} }