refactor
This commit is contained in:
parent
f52a8f225b
commit
d7ce40ffa7
14 changed files with 38 additions and 30 deletions
|
|
@ -1,62 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
environment.systemPackages =
|
||||
let
|
||||
editors = with pkgs; [
|
||||
vscode
|
||||
emacs
|
||||
jetbrains.gateway
|
||||
jetbrains.rust-rover
|
||||
];
|
||||
|
||||
messengers = with pkgs; [
|
||||
signal-desktop
|
||||
element-desktop
|
||||
zulip
|
||||
vesktop
|
||||
];
|
||||
|
||||
util = with pkgs; [
|
||||
wireguard-tools
|
||||
bitwarden
|
||||
kitty
|
||||
nil
|
||||
];
|
||||
|
||||
media = with pkgs; [
|
||||
vlc
|
||||
spotify
|
||||
calibre
|
||||
];
|
||||
|
||||
productivity = with pkgs; [
|
||||
zotero
|
||||
obsidian
|
||||
];
|
||||
|
||||
dev = with pkgs; [
|
||||
rustup
|
||||
python313
|
||||
gcc
|
||||
binutils
|
||||
];
|
||||
|
||||
in
|
||||
editors ++ messengers ++ util ++ media ++ productivity ++ dev;
|
||||
|
||||
virtualisation = {
|
||||
docker.enable = true;
|
||||
};
|
||||
|
||||
programs = {
|
||||
firefox.enable = true;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
package = pkgs.thunderbird-latest;
|
||||
};
|
||||
};
|
||||
|
||||
# Some excludes
|
||||
services.xserver.excludePackages = [ pkgs.xterm ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue