add python services
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
kdePackages.kate
|
||||
|
||||
];
|
||||
hashedPassword = "$6$El6e2NhPrhVFjbFU$imlGZqUiizWw5fMP/ib0CeboOcFhYjIVb8oR1V1dP2NjDeri3jMoUm4ZABOB2uAF8UEDjAGHhFuZxhtbHg647/";
|
||||
};
|
||||
@@ -24,6 +25,8 @@
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
};
|
||||
|
||||
imports = [ ./python.nix ];
|
||||
|
||||
# Home Manager configs per user
|
||||
home-manager = {
|
||||
|
||||
11
users/python.nix
Normal file
11
users/python.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
(pkgs.buildFHSEnv {
|
||||
name = "pixi";
|
||||
runScript = "pixi";
|
||||
targetPkgs = pkgs: with pkgs; [ pixi ];
|
||||
})
|
||||
pkgs.uv
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user