1757626796
This commit is contained in:
@@ -1,21 +1,10 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
|
||||||
unstablePkgs = import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {
|
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
# Allow unfree packages for the default (stable) nixpkgs.
|
# Allow unfree packages from the stable channel
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# System packages
|
environment.systemPackages = with pkgs; [
|
||||||
environment.systemPackages =
|
|
||||||
# Packages from the stable channel (pkgs)
|
|
||||||
with pkgs; [
|
|
||||||
# Browsers and comms
|
# Browsers and comms
|
||||||
ungoogled-chromium
|
ungoogled-chromium
|
||||||
discord
|
discord
|
||||||
@@ -64,9 +53,5 @@ in
|
|||||||
|
|
||||||
# GNOME extensions
|
# GNOME extensions
|
||||||
gnomeExtensions.appindicator
|
gnomeExtensions.appindicator
|
||||||
]
|
];
|
||||||
# Unstable packages
|
|
||||||
++ (with unstablePkgs; [
|
|
||||||
onlyoffice-desktopeditors
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user