Compare commits

..

3 commits

Author SHA1 Message Date
3bfcd4e1a6 added gs and flake update 2024-10-22 10:48:55 +02:00
e143bdc668 qt round 2 2024-10-21 19:14:43 +02:00
07f51a2324 added python to codium 2024-10-21 19:14:29 +02:00
2 changed files with 15 additions and 11 deletions

View file

@ -25,11 +25,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1729459288, "lastModified": 1729551526,
"narHash": "sha256-gBOVJv+q6Mx8jGvwX7cE6J8+sZmi1uxpRVsO7WxvVuQ=", "narHash": "sha256-7LAGY32Xl14OVQp3y6M43/0AtHYYvV6pdyBcp3eoz0s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "1e27f213d77fc842603628bcf2df6681d7d08f7e", "rev": "5ec753a1fc4454df9285d8b3ec0809234defb975",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -55,11 +55,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1729455275, "lastModified": 1729509737,
"narHash": "sha256-THqzn/7um3oMHUEGXyq+1CJQE7EogwR3HjLMNOlhFBE=", "narHash": "sha256-8OHgqz+tFo21h3hg4/GHizFPws+MMzpEru/+62Z0E8c=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "9fcf30fccf8435f6390efec4a4d38e69c2268a36", "rev": "cc2d3c0e060f981905d52337340ee6ec8b8eb037",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -33,6 +33,7 @@
prismlauncher # REMOVE AND MOVE TO games module after refactoring prismlauncher # REMOVE AND MOVE TO games module after refactoring
joplin-desktop joplin-desktop
albert albert
ghostscript
(octaveFull.withPackages ( (octaveFull.withPackages (
ps: with ps; [ ps: with ps; [
octavePackages.signal octavePackages.signal
@ -161,11 +162,11 @@
}; };
}; };
# qt = { qt = {
# enable = true; enable = true;
# platformTheme.name = "adwaita"; # TODO: fix themes platformTheme.name = "qtct";
# style.name = "adwaita"; style.name = "adwaita-dark";
# }; };
programs.vscode = { programs.vscode = {
enable = true; enable = true;
@ -177,6 +178,9 @@
ms-azuretools.vscode-docker ms-azuretools.vscode-docker
ms-kubernetes-tools.vscode-kubernetes-tools ms-kubernetes-tools.vscode-kubernetes-tools
redhat.vscode-yaml redhat.vscode-yaml
ms-python.python
ms-python.debugpy
ms-python.vscode-pylance
]; ];
mutableExtensionsDir = false; mutableExtensionsDir = false;
}; };