Split config
This commit is contained in:
parent
38337e482a
commit
34fbb0f945
14 changed files with 312 additions and 289 deletions
30
configs/gui.nix
Normal file
30
configs/gui.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||
inherit pkgs;
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
jetbrains.idea-ultimate
|
||||
keepassxc
|
||||
krita
|
||||
riot-desktop
|
||||
steam
|
||||
mpv
|
||||
mumble
|
||||
];
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
keepassxc-browser
|
||||
ublock-origin
|
||||
umatrix
|
||||
cookie-autodelete
|
||||
dark-night-mode
|
||||
];
|
||||
};
|
||||
|
||||
services.nextcloud-client.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue