Skip to content

Commit bd5fcb4

Browse files
committed
update to 25.11
1 parent 15b3db4 commit bd5fcb4

File tree

11 files changed

+72
-277
lines changed

11 files changed

+72
-277
lines changed

flake.lock

Lines changed: 56 additions & 257 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
description = "daniel";
33

44
inputs = {
5-
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
5+
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
66
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
77
nixpkgs-edge.url = "github:nixos/nixpkgs/nixos-unstable";
88

99
home-manager = {
10-
url = "github:nix-community/home-manager/release-25.05";
10+
url = "github:nix-community/home-manager/release-25.11";
1111
inputs.nixpkgs.follows = "nixpkgs";
1212
};
1313

@@ -32,14 +32,14 @@
3232
...
3333
}@inputs:
3434
let
35-
stateVersion = "25.05";
35+
stateVersion = "25.11";
3636
system = "x86_64-linux";
3737

3838
pkgs-unstable = import nixpkgs-unstable {
3939
inherit system;
4040
config.allowUnfree = true;
4141
config.permittedInsecurePackages = [
42-
"libsoup-2.74.3"
42+
"gradle-7.6.6"
4343
];
4444
};
4545

home-manager/apps/gaming.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
pkgs.winetricks
1010

1111
pkgs-unstable.prismlauncher
12-
pkgs-unstable.glfw-wayland-minecraft
12+
pkgs-unstable.glfw3-minecraft
1313
pkgs-unstable.lunar-client
1414

1515
pkgs-unstable.r2modman

home-manager/desktop/hyprland.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,6 @@ in
246246
preserve_split = "yes";
247247
};
248248

249-
gestures = {
250-
workspace_swipe = "off";
251-
};
252-
253249
misc = {
254250
force_default_wallpaper = 0;
255251
mouse_move_enables_dpms = false;
@@ -308,7 +304,6 @@ in
308304
pkgs.catppuccin-cursors.mochaMauve
309305

310306
# miscellaneous
311-
pkgs.kdePackages.xwaylandvideobridge
312307
pkgs.xdg-utils
313308

314309
# For waybar clock

home-manager/rofi.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
catppuccin.rofi.enable = false;
66
programs.rofi = {
77
enable = true;
8-
package = pkgs.rofi-wayland;
98
theme = "custom";
109
};
1110

hosts/desktop/home/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@
4949
GDK_BACKEND = "wayland";
5050
};
5151

52+
nixpkgs.config.permittedInsecurePackages = [
53+
"gradle-7.6.6"
54+
];
55+
5256
environment.systemPackages = with pkgs; [
5357
lm_sensors
5458
libthai

modules/drivers/coolercontrol.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
{
44
programs.coolercontrol = {
55
enable = true;
6-
nvidiaSupport = true;
6+
# nvidiaSupport = true;
77
};
88
}

modules/services/ollama.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
{ pkgs-unstable, ... }:
1+
{ ... }:
22

33
{
44
services.ollama = {
55
enable = true;
6-
7-
package = pkgs-unstable.ollama;
86
acceleration = "cuda";
97
};
108
}

modules/vm/vm.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
package = pkgs.qemu_kvm;
99
runAsRoot = true;
1010
swtpm.enable = true;
11-
ovmf.enable = true;
12-
ovmf.packages = [ pkgs.OVMFFull.fd ];
11+
# ovmf.enable = true;
12+
# ovmf.packages = [ pkgs.OVMFFull.fd ];
1313
};
1414
};
1515
spiceUSBRedirection.enable = true;

pkgs/easyeda.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
pkgs,
77
makeWrapper,
88
lib,
9-
wrapGAppsHook,
9+
wrapGAppsHook3,
1010
}:
1111

1212
stdenv.mkDerivation rec {
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
2222
unzip
2323
autoPatchelfHook
2424
makeWrapper
25-
wrapGAppsHook
25+
wrapGAppsHook3
2626
];
2727

2828
buildInputs = with pkgs; [

0 commit comments

Comments
 (0)