Upgraded to 25.11

This commit is contained in:
Benson Chu 2025-08-11 14:07:49 -05:00
parent 1cedb29582
commit c306d48eac
5 changed files with 30 additions and 32 deletions

View file

@ -5,11 +5,10 @@
./exwm.nix ./exwm.nix
]; ];
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;
services = {
services = {
# Enable sound with pipewire.
pipewire = { pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
@ -21,6 +20,7 @@
# no need to redefine it in your config for now) # no need to redefine it in your config for now)
# media-session.enable = true; # media-session.enable = true;
}; };
pulseaudio.enable = false;
}; };
services.xserver = { services.xserver = {
@ -28,7 +28,7 @@
enable = true; enable = true;
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.
desktopManager.plasma5.enable = true; desktopManager.plasma6.enable = true;
# Enable sddm and startx # Enable sddm and startx
displayManager = { displayManager = {
@ -91,10 +91,10 @@
docker docker
pcmanfm pcmanfm
libsForQt5.dolphin kdePackages.dolphin
libsForQt5.dolphin-plugins kdePackages.dolphin-plugins
libsForQt5.ffmpegthumbs kdePackages.ffmpegthumbs
libsForQt5.kdegraphics-thumbnailers kdePackages.kdegraphics-thumbnailers
p7zip p7zip
unzip unzip

View file

@ -63,16 +63,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736373539, "lastModified": 1753592768,
"narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=", "narHash": "sha256-oV695RvbAE4+R9pcsT9shmp6zE/+IZe6evHWX63f2Qg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "bd65bc3cde04c16755955630b344bc9e35272c56", "rev": "fc3add429f21450359369af74c2375cb34a2d204",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-24.11", "ref": "release-25.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
@ -117,16 +117,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1750330365, "lastModified": 1754767907,
"narHash": "sha256-hJ7XMNVsTnnbV2NPmStCC07gvv5l2x7+Skb7hyUzazg=", "narHash": "sha256-8OnUzRQZkqtUol9vuUuQC30hzpMreKptNyET2T9lB6g=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d883b6213afa179b58ba8bace834f1419707d0ad", "rev": "c5f08b62ed75415439d48152c2a784e36909b1bc",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-24.11", "ref": "nixos-25.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@ -192,16 +192,16 @@
}, },
"update": { "update": {
"locked": { "locked": {
"lastModified": 1746957726, "lastModified": 1754767907,
"narHash": "sha256-k9ut1LSfHCr0AW82ttEQzXVCqmyWVA5+SHJkS5ID/Jo=", "narHash": "sha256-8OnUzRQZkqtUol9vuUuQC30hzpMreKptNyET2T9lB6g=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a39ed32a651fdee6842ec930761e31d1f242cb94", "rev": "c5f08b62ed75415439d48152c2a784e36909b1bc",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-24.11", "ref": "nixos-25.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -1,14 +1,14 @@
{ {
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
update.url = "github:nixos/nixpkgs/nixos-24.11"; update.url = "github:nixos/nixpkgs/nixos-25.05";
unstable.url = "github:nixos/nixpkgs/nixos-unstable"; unstable.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-24.11"; url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
emacs-overlay = { emacs-overlay = {
@ -62,7 +62,7 @@
]; ];
}; };
NixGate = nixpkgs.lib.nixosSystem { NixGate = pkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
@ -71,7 +71,7 @@
]; ];
}; };
NixSentinel = nixpkgs.lib.nixosSystem { NixSentinel = pkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
@ -84,7 +84,7 @@
# system = "x86_64-linux"; # system = "x86_64-linux";
# modules = [ ./hosts/NixFrame/configuration.nix ]; # modules = [ ./hosts/NixFrame/configuration.nix ];
# }; # };
}; };
packages."${system}" = { packages."${system}" = {
mps-debug = pkgs.mps-debug; mps-debug = pkgs.mps-debug;

View file

@ -36,11 +36,11 @@
description = "Benson Chu"; description = "Benson Chu";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
kate kdePackages.kate
kdePackages.dolphin
kdePackages.breeze-icons
steam steam
moonlight-qt moonlight-qt
dolphin
breeze-icons
xautolock xautolock
unstable.mqtt-explorer unstable.mqtt-explorer
musescore musescore
@ -147,8 +147,6 @@
supercollider-with-sc3-plugins supercollider-with-sc3-plugins
]; ];
hardware.gkraken.enable = true;
networking.firewall = { networking.firewall = {
enable = true; enable = true;
allowedTCPPortRanges = [ allowedTCPPortRanges = [

View file

@ -47,7 +47,7 @@
description = "Benson Chu"; description = "Benson Chu";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [ packages = with pkgs; [
kate kdePackages.kate
steam steam
]; ];
}; };