reorder apps, switch to stable

This commit is contained in:
Mohamed Chrayed 2024-08-01 10:01:40 +02:00
parent d7443464eb
commit 76df0650d7
2 changed files with 13 additions and 5 deletions

View File

@ -4,9 +4,13 @@
enable = true;
languagePacks = ["de"];
};
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
environment.systemPackages = with pkgs; [
environment.systemPackages =
(with pkgs; [
])
++
(with pkgs-stable; [
wget
git
vesktop
@ -21,6 +25,7 @@
neofetch
mangohud
ibm-plex
nil
citrix_workspace
];
]);
}

View File

@ -1,2 +1,5 @@
{ config, pkgs, pkgs-stable, ... }:
{}
{
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}