Split home-manager and system config
This commit is contained in:
parent
d70d2bdeec
commit
8b87b06972
8 changed files with 30 additions and 36 deletions
31
configs/home-gui.nix
Normal file
31
configs/home-gui.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||
inherit pkgs;
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
keepassxc
|
||||
krita
|
||||
element-desktop
|
||||
mpv
|
||||
mumble
|
||||
libreoffice-fresh
|
||||
slack
|
||||
thunderbird
|
||||
zoom-us
|
||||
];
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
keepassxc-browser
|
||||
ublock-origin
|
||||
umatrix
|
||||
cookie-autodelete
|
||||
];
|
||||
};
|
||||
|
||||
services.nextcloud-client.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue