imperium: update to 24.11 (beta)
This commit is contained in:
parent
d1e8933d1e
commit
ae7bfb8ba1
17
flake.lock
generated
17
flake.lock
generated
@ -114,6 +114,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixpkgs-2411": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1732350895,
|
||||||
|
"narHash": "sha256-GcOQbOgmwlsRhpLGSwZJwLbo3pu9ochMETuRSS1xpz4=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "0c582677378f2d9ffcb01490af2f2c678dcb29d3",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-24.11",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs-unstable": {
|
"nixpkgs-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1723362943,
|
"lastModified": 1723362943,
|
||||||
@ -137,6 +153,7 @@
|
|||||||
"intake-sources": "intake-sources",
|
"intake-sources": "intake-sources",
|
||||||
"nixpkgs-2311": "nixpkgs-2311",
|
"nixpkgs-2311": "nixpkgs-2311",
|
||||||
"nixpkgs-2405": "nixpkgs-2405",
|
"nixpkgs-2405": "nixpkgs-2405",
|
||||||
|
"nixpkgs-2411": "nixpkgs-2411",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable"
|
"nixpkgs-unstable": "nixpkgs-unstable"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs-2311.url = "github:NixOS/nixpkgs/23.11";
|
nixpkgs-2311.url = "github:NixOS/nixpkgs/23.11";
|
||||||
nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05";
|
nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||||
|
nixpkgs-2411.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
flake-compat = {
|
flake-compat = {
|
||||||
url = "github:edolstra/flake-compat";
|
url = "github:edolstra/flake-compat";
|
||||||
@ -22,6 +23,7 @@
|
|||||||
self,
|
self,
|
||||||
nixpkgs-2311,
|
nixpkgs-2311,
|
||||||
nixpkgs-2405,
|
nixpkgs-2405,
|
||||||
|
nixpkgs-2411,
|
||||||
nixpkgs-unstable,
|
nixpkgs-unstable,
|
||||||
flake-compat,
|
flake-compat,
|
||||||
intake,
|
intake,
|
||||||
@ -64,7 +66,7 @@
|
|||||||
./machine/empyrean
|
./machine/empyrean
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
imperium = nixpkgs-2405.lib.nixosSystem {
|
imperium = nixpkgs-2411.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
self.nixosModules.beatific
|
self.nixosModules.beatific
|
||||||
|
@ -40,7 +40,6 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Enable sound with pipewire.
|
# Enable sound with pipewire.
|
||||||
sound.enable = true;
|
|
||||||
hardware.pulseaudio.enable = false;
|
hardware.pulseaudio.enable = false;
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
@ -70,8 +69,8 @@
|
|||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
services.xserver.videoDrivers = [ "i915" ];
|
services.xserver.videoDrivers = [ "i915" ];
|
||||||
hardware.opengl.enable = true;
|
hardware.graphics.enable = true;
|
||||||
hardware.opengl.driSupport32Bit = true;
|
hardware.graphics.enable32Bit = true;
|
||||||
|
|
||||||
beatific.extraPrograms = true;
|
beatific.extraPrograms = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
@ -80,7 +79,7 @@
|
|||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
comic-mono
|
comic-mono
|
||||||
firefox
|
firefox
|
||||||
gnome.gnome-terminal
|
gnome-terminal
|
||||||
gthumb
|
gthumb
|
||||||
libreoffice
|
libreoffice
|
||||||
mpv
|
mpv
|
||||||
|
Loading…
Reference in New Issue
Block a user