fix jetbrains

This commit is contained in:
Kopatz
2025-08-07 10:40:24 +02:00
parent cc23723a9c
commit 5bbd717b64
5 changed files with 18 additions and 35 deletions

17
flake.lock generated
View File

@@ -400,22 +400,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-working-jetbrains": {
"locked": {
"lastModified": 1753384556,
"narHash": "sha256-oRNcEk/Dsns534HkPSCDTFLpSXJfGts9RDLfDkBt5U8=",
"owner": "Janrupf",
"repo": "nixpkgs",
"rev": "50fbd3334953a47b0bae0c9f88b98432c735fcfe",
"type": "github"
},
"original": {
"owner": "Janrupf",
"ref": "master",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-working-xrdp": { "nixpkgs-working-xrdp": {
"locked": { "locked": {
"lastModified": 1750030408, "lastModified": 1750030408,
@@ -534,7 +518,6 @@
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"nixpkgs-working-jetbrains": "nixpkgs-working-jetbrains",
"nixpkgs-working-xrdp": "nixpkgs-working-xrdp", "nixpkgs-working-xrdp": "nixpkgs-working-xrdp",
"nixvim": "nixvim", "nixvim": "nixvim",
"nur": "nur", "nur": "nur",

View File

@@ -28,7 +28,7 @@
}; };
nixpkgs-working-xrdp.url = "github:NixOS/nixpkgs/b26c89e6aa1d7731d5e267656207f2e1c2f37f1d"; nixpkgs-working-xrdp.url = "github:NixOS/nixpkgs/b26c89e6aa1d7731d5e267656207f2e1c2f37f1d";
#nixpkgs-working-jetbrains.url = "github:symphorien/nixpkgs/jdk_structured_attrs"; #nixpkgs-working-jetbrains.url = "github:symphorien/nixpkgs/jdk_structured_attrs";
nixpkgs-working-jetbrains.url = "github:Janrupf/nixpkgs/master"; #nixpkgs-working-jetbrains.url = "github:Janrupf/nixpkgs/master";
# cosmic testing # cosmic testing
#nixos-cosmic = { #nixos-cosmic = {
# url = "github:lilyinstarlight/nixos-cosmic"; # url = "github:lilyinstarlight/nixos-cosmic";

View File

@@ -265,7 +265,7 @@ in
"$mainMod, mouse_down, workspace, e+1" "$mainMod, mouse_down, workspace, e+1"
"$mainMod, mouse_up, workspace, e-1" "$mainMod, mouse_up, workspace, e-1"
# "ALT, Tab, cyclenext," "ALT, Tab, cyclenext,"
# "ALT, Tab, bringactivetotop," # "ALT, Tab, bringactivetotop,"
]; ];

View File

@@ -44,20 +44,20 @@ in
config.allowUnfree = true; config.allowUnfree = true;
}).xrdp; }).xrdp;
jetbrains = prev.jetbrains // { #jetbrains = prev.jetbrains // {
jdk = (import inputs.nixpkgs-working-jetbrains { # jdk = (import inputs.nixpkgs-working-jetbrains {
system = prev.stdenv.hostPlatform.system; # system = prev.stdenv.hostPlatform.system;
config.allowUnfree = true; # config.allowUnfree = true;
}).jetbrains.jdk; # }).jetbrains.jdk;
jdk-no-jcef = (import inputs.nixpkgs-working-jetbrains { # jdk-no-jcef = (import inputs.nixpkgs-working-jetbrains {
system = prev.stdenv.hostPlatform.system; # system = prev.stdenv.hostPlatform.system;
config.allowUnfree = true; # config.allowUnfree = true;
}).jetbrains.jdk-no-jcef; # }).jetbrains.jdk-no-jcef;
jdk-no-jcef-17 = (import inputs.nixpkgs-working-jetbrains { # jdk-no-jcef-17 = (import inputs.nixpkgs-working-jetbrains {
system = prev.stdenv.hostPlatform.system; # system = prev.stdenv.hostPlatform.system;
config.allowUnfree = true; # config.allowUnfree = true;
}).jetbrains.jdk-no-jcef-17; # }).jetbrains.jdk-no-jcef-17;
}; #};
hyprshade = prev.hyprshade.overrideAttrs { hyprshade = prev.hyprshade.overrideAttrs {
version = "4.0.0"; version = "4.0.0";

View File

@@ -180,10 +180,10 @@
# Enable CUPS to print documents. # Enable CUPS to print documents.
# disable until CVE-2024-47176, CVE-2024-47076, CVE-2024-47175, and CVE-2024-47177 is fixed # disable until CVE-2024-47176, CVE-2024-47076, CVE-2024-47175, and CVE-2024-47177 is fixed
# http://localhost:631 # http://localhost:631
services.printing.enable = false; services.printing.enable = true;
services.printing.drivers = [ pkgs.brlaser ]; services.printing.drivers = [ pkgs.brlaser ];
services.avahi = { services.avahi = {
enable = false; enable = true;
nssmdns4 = true; nssmdns4 = true;
openFirewall = true; openFirewall = true;
}; };