ugly fix while python is being dealt with

This commit is contained in:
cnst
2024-07-10 19:18:50 +02:00
parent b42945b458
commit 5941de0c7f
16 changed files with 102 additions and 230 deletions

View File

@@ -32,6 +32,8 @@ in {
];
};
programs.dconf.enable = true;
imports = [
inputs.home-manager.nixosModules.home-manager
./imports.nix

View File

@@ -26,7 +26,7 @@
# extra
../../extra/gaming.nix
../../extra/workstation
#../../extra/workstation
# ../../extra/nix-ld
];
@@ -41,6 +41,7 @@
sbctl
# Util
anyrun
curl
fzf
gnome-disk-utility

View File

@@ -3,6 +3,19 @@
outputs,
...
}: {
programs = {
nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/cnst/.nix-config";
};
};
security.rtkit.enable = true;
environment.localBinInPath = true;
console.useXkbConfig = true;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
@@ -11,26 +24,14 @@
};
};
nixpkgs = {
overlays = [];
overlays = [
(_: prev: {
python312 = prev.python312.override {packageOverrides = _: pysuper: {nose = pysuper.pynose;};};
})
];
config = {
allowUnfree = true;
input-fonts.acceptLicense = true;
};
};
programs = {
nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/cnst/.nix-config";
};
dconf.enable = true;
};
security.rtkit.enable = true;
environment.localBinInPath = true;
console.useXkbConfig = true;
}