desktop-2024-06-02-13-55-55
This commit is contained in:
@ -1,28 +1,23 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
unstable = import <nixos-unstable> {
|
||||
config.allowUnfree = true;
|
||||
config.packageOverrides = pkgs: {
|
||||
steam = pkgs.steam.override {
|
||||
extraPkgs = pkgs: with unstable.pkgs; [
|
||||
gamescope
|
||||
mangohud
|
||||
ncurses6
|
||||
];
|
||||
};
|
||||
lutris = pkgs.lutris.override {
|
||||
extraPkgs = pkgs: with unstable.pkgs; [
|
||||
gamescope
|
||||
mangohud
|
||||
];
|
||||
unstable = import <nixos-unstable> {
|
||||
config.allowUnfree = true;
|
||||
config.packageOverrides = pkgs: {
|
||||
steam = pkgs.steam.override {
|
||||
extraPkgs = pkgs: with unstable.pkgs; [ gamescope mangohud ncurses6 ];
|
||||
};
|
||||
lutris = pkgs.lutris.override {
|
||||
extraPkgs = pkgs: with unstable.pkgs; [ gamescope mangohud ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
package = unstable.pkgs.steam;
|
||||
in {
|
||||
programs = {
|
||||
gamescope.enable = true;
|
||||
steam = {
|
||||
enable = true;
|
||||
package = unstable.pkgs.steam;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with unstable.pkgs; [
|
||||
|
@ -54,8 +54,6 @@
|
||||
# App indicator
|
||||
environment.pathsToLink = [ "/libexec" ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
# blackbox-terminal
|
||||
# cinnamon.nemo-with-extensions
|
||||
gnome-online-accounts
|
||||
gnome.gnome-control-center
|
||||
gnome.gnome-system-monitor
|
||||
|
@ -38,4 +38,9 @@
|
||||
# updateDbusEnvironment = true;
|
||||
# };
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
catppuccin-kde
|
||||
sweet-nova
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user