1753134851
This commit is contained in:
@@ -1,11 +1,21 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
unstablePkgs = import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
||||
in
|
||||
{
|
||||
# Allow unfree packages
|
||||
# Allow unfree packages for the default (stable) nixpkgs.
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# System packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages =
|
||||
# Packages from the stable channel (pkgs)
|
||||
with pkgs; [
|
||||
# Browsers and communication
|
||||
ungoogled-chromium
|
||||
librewolf
|
||||
@@ -13,8 +23,7 @@
|
||||
signal-desktop-bin
|
||||
impression
|
||||
|
||||
# Development tools
|
||||
vscodium
|
||||
# Development tools (moving vscodium to unstable)
|
||||
git
|
||||
go
|
||||
cargo
|
||||
@@ -27,13 +36,11 @@
|
||||
nodePackages."pnpm"
|
||||
openssl
|
||||
ffmpeg
|
||||
vscodium
|
||||
|
||||
# Desktop applications
|
||||
alacritty
|
||||
bitwarden-desktop
|
||||
vlc
|
||||
onlyoffice-desktopeditors
|
||||
gnome-notes
|
||||
streamrip
|
||||
supersonic
|
||||
nextcloud-client
|
||||
@@ -50,5 +57,9 @@
|
||||
|
||||
# GNOME extensions
|
||||
gnomeExtensions.appindicator
|
||||
];
|
||||
]
|
||||
# Packages from the unstable channel (unstablePkgs)
|
||||
++ (with unstablePkgs; [
|
||||
onlyoffice-desktopeditors
|
||||
]);
|
||||
}
|
||||
Reference in New Issue
Block a user