1
0
Fork 0

General: revert NixOS to 24.05 for GPU performance issues

This commit is contained in:
Aires 2024-07-26 09:52:37 -04:00
parent eba6d8fa21
commit 4f3d0a8203
3 changed files with 15 additions and 16 deletions

View file

@ -296,16 +296,16 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1721743106, "lastModified": 1721821769,
"narHash": "sha256-adRZhFpBTnHiK3XIELA3IBaApz70HwCYfv7xNrHjebA=", "narHash": "sha256-PhmkdTJs2SfqKzSyDB74rDKp1MH4mGk0pG/+WqrnGEw=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "dc14ed91132ee3a26255d01d8fd0c1f5bff27b2f", "rev": "d0907b75146a0ccc1ec0d6c3db287ec287588ef6",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-unstable", "ref": "nixos-24.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -7,7 +7,7 @@
# Import the desired Nix channel. Defaults to unstable, which uses a fully tested rolling release model. # Import the desired Nix channel. Defaults to unstable, which uses a fully tested rolling release model.
# You can find a list of channels at https://wiki.nixos.org/wiki/Nix_channels # You can find a list of channels at https://wiki.nixos.org/wiki/Nix_channels
# To follow a different channel, replace `nixos-unstable` with the channel name, e.g. `nixos-24.05`. # To follow a different channel, replace `nixos-unstable` with the channel name, e.g. `nixos-24.05`.
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
# Use Lix in place of Nix. # Use Lix in place of Nix.
# If you'd rather use regular Nix, remove `lix-module.nixosModules.default` from the `modules` section below. # If you'd rather use regular Nix, remove `lix-module.nixosModules.default` from the `modules` section below.

View file

@ -66,26 +66,25 @@ in
gnomeExtensions.extension-list gnomeExtensions.extension-list
gedit # text editor gedit # text editor
]) ])
++ (with pkgs; [ ++ (with pkgs.gnome; [
cheese # webcam tool gnome-music
gnome.gnome-music
gnome-calendar gnome-calendar
epiphany # web browser epiphany # web browser
geary # email reader geary # email reader
evince # document viewer evince # document viewer
gnome.gnome-characters gnome-characters
gnome.gnome-software gnome-software
totem # video player totem # video player
gnome.tali # poker game tali # poker game
gnome.iagno # go game iagno # go game
gnome.hitori # sudoku game hitori # sudoku game
gnome.atomix # puzzle game atomix # puzzle game
]); ]);
# Install additional packages # Install additional packages
systemPackages = with pkgs; [ systemPackages = with pkgs; [
# Gnome tweak tools # Gnome tweak tools
gnome-tweaks gnome.gnome-tweaks
# Gnome extensions # Gnome extensions
gnomeExtensions.alphabetical-app-grid gnomeExtensions.alphabetical-app-grid
gnomeExtensions.another-window-session-manager gnomeExtensions.another-window-session-manager
@ -94,7 +93,7 @@ in
gnomeExtensions.forge gnomeExtensions.forge
gnomeExtensions.random-wallpaper gnomeExtensions.random-wallpaper
# Themeing # Themeing
gnome-themes-extra gnome.gnome-themes-extra
papirus-icon-theme papirus-icon-theme
qogir-icon-theme qogir-icon-theme
]; ];