packaging fix

This commit is contained in:
2025-12-04 16:02:44 -05:00
parent 01e2093424
commit 16e300de5a

View File

@@ -1,5 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
let
pythonPkgs = import ./python.nix { inherit pkgs; };
in
{ {
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users = { users.users = {
@@ -10,7 +12,7 @@
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
kdePackages.kate kdePackages.kate
] ++ ./python.nix; ] ++ pythonPkgs;
hashedPassword = "$6$El6e2NhPrhVFjbFU$imlGZqUiizWw5fMP/ib0CeboOcFhYjIVb8oR1V1dP2NjDeri3jMoUm4ZABOB2uAF8UEDjAGHhFuZxhtbHg647/"; hashedPassword = "$6$El6e2NhPrhVFjbFU$imlGZqUiizWw5fMP/ib0CeboOcFhYjIVb8oR1V1dP2NjDeri3jMoUm4ZABOB2uAF8UEDjAGHhFuZxhtbHg647/";
}; };
@@ -20,7 +22,7 @@
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
kdePackages.kate kdePackages.kate
] ++ ./python.nix; ] ++ pythonPkgs;
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
}; };