bjarte: 23.11 -> 24.05

This commit is contained in:
Peder Bergebakken Sundt 2024-06-07 18:26:44 +02:00
parent a89b16c969
commit 8459ec5c67
5 changed files with 18 additions and 8 deletions

View File

@ -12,10 +12,9 @@
]; ];
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [
"pulsar-1.106.0" pkgs.pulsar.name
"pulsar-1.109.0" pkgs.zotero.name
"zotero-6.0.26" pkgs.gitea.name
"gitea-1.19.4"
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View File

@ -280,7 +280,7 @@
brumlebasse = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au amd nspawn ]; brumlebasse = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au amd nspawn ];
nord = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au intel-novga hw.common-cpu-intel-sandy-bridge rocm hidpi ]; nord = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au intel-novga hw.common-cpu-intel-sandy-bridge rocm hidpi ];
sopp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au nixld intel cuda p1005 ]; sopp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au nixld intel cuda p1005 ];
bjarte = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ nixld intel hw.lenovo-thinkpad-x1-7th-gen ]; bjarte = mk "pbsds.net" "x86_64-linux" inputs-2405 "23.11" [ nixld intel hw.lenovo-thinkpad-x1-7th-gen ];
bolle = mk "pbsds.net" "x86_64-linux" inputs-2405 "23.11" [ au dns64 intel ]; bolle = mk "pbsds.net" "x86_64-linux" inputs-2405 "23.11" [ au dns64 intel ];
eple = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel rocm ]; eple = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel rocm ];
garp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel-novga cuda ]; garp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel-novga cuda ];

View File

@ -38,11 +38,11 @@
environment.gnome.excludePackages = (with pkgs; [ environment.gnome.excludePackages = (with pkgs; [
gnome-photos gnome-photos
gnome-tour gnome-tour
(pkgs.gedit or pkgs.gnome.gedit) # text editor (24.05 vs 23.11)
]) ++ (with pkgs.gnome; [ ]) ++ (with pkgs.gnome; [
#cheese # webcam tool #cheese # webcam tool
gnome-music gnome-music
gnome-terminal gnome-terminal
gedit # text editor
#epiphany # web browser #epiphany # web browser
geary # email reader geary # email reader
totem # video player totem # video player

View File

@ -1,3 +1,4 @@
{ lib, ... }: lib.mkMerge [
{ {
# Time zone and internationalisation properties. # Time zone and internationalisation properties.
time.timeZone = "Europe/Oslo"; time.timeZone = "Europe/Oslo";
@ -12,6 +13,13 @@
i18n.extraLocaleSettings.LC_TELEPHONE = "nb_NO.utf8"; i18n.extraLocaleSettings.LC_TELEPHONE = "nb_NO.utf8";
i18n.extraLocaleSettings.LC_TIME = "nb_NO.utf8"; i18n.extraLocaleSettings.LC_TIME = "nb_NO.utf8";
console.keyMap = "no"; console.keyMap = "no";
}
(lib.mkIf (lib.versionAtLeast (lib.versions.majorMinor lib.version) "24.05") {
services.xserver.xkb.layout = "no";
services.xserver.xkb.variant = "";
})
(lib.mkIf (lib.versionOlder (lib.versions.majorMinor lib.version) "24.05") {
services.xserver.layout = "no"; services.xserver.layout = "no";
services.xserver.xkbVariant = ""; services.xserver.xkbVariant = "";
} })
]

View File

@ -33,7 +33,10 @@ in
# qt theme # qt theme
qt.enable = true; qt.enable = true;
qt.platformTheme = "gnome"; qt.platformTheme = lib.mkMerge [
(lib.mkIf (lib.versionAtLeast config.home.version.release "24.05") { name = "advaita"; })
(lib.mkIf (lib.versionOlder config.home.version.release "24.05") "gnome")
];
qt.style.name = "Colloid-dark"; qt.style.name = "Colloid-dark";
qt.style.package = pkgs.colloid-kde; qt.style.package = pkgs.colloid-kde;