2022-12-28 13:27:18 +01:00
|
|
|
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
|
|
imports = [
|
2023-01-10 02:38:06 +01:00
|
|
|
./global
|
|
|
|
./features/desktop/xmonad.nix
|
2023-01-10 16:05:48 +01:00
|
|
|
./features/desktop/common/discord.nix
|
2023-04-27 01:08:20 +02:00
|
|
|
./features/desktop/common/signal.nix
|
2023-04-25 15:35:09 +02:00
|
|
|
./features/desktop/common/qbittorrent.nix
|
2023-01-10 16:05:48 +01:00
|
|
|
./features/desktop/common/zathura.nix
|
2023-05-03 18:08:02 +02:00
|
|
|
./features/desktop/common/firefox
|
2023-04-27 01:08:20 +02:00
|
|
|
./features/games
|
2023-01-12 20:49:08 +01:00
|
|
|
];
|
|
|
|
|
2023-03-01 16:58:56 +01:00
|
|
|
# Arbitrary extra packages
|
2023-01-12 20:49:08 +01:00
|
|
|
home.packages = with pkgs; [
|
2023-03-01 16:58:56 +01:00
|
|
|
# Desktop apps
|
2023-01-12 20:49:08 +01:00
|
|
|
zoom-us # Zoom client 🤮
|
2023-04-27 01:08:20 +02:00
|
|
|
element-desktop # Matrix client
|
2023-01-12 20:49:08 +01:00
|
|
|
obsidian # Notes
|
|
|
|
peek # GIF recorder
|
|
|
|
vlc # Video player
|
|
|
|
gimp # Image editing
|
|
|
|
libreoffice # Free office suite
|
2023-03-01 16:58:56 +01:00
|
|
|
lmms # Music software
|
2023-03-14 20:57:07 +01:00
|
|
|
kicad # PCB editing
|
2023-04-27 01:08:20 +02:00
|
|
|
# google-chrome # Not my primary browser, but sometimes needed in webdev
|
2023-01-12 20:49:08 +01:00
|
|
|
# obs-studio # video recorder
|
2023-03-01 16:58:56 +01:00
|
|
|
|
|
|
|
# Clis
|
|
|
|
agenix # Secret encryption
|
|
|
|
sherlock # Search for usernames across different websites
|
2022-12-28 13:27:18 +01:00
|
|
|
];
|
2023-02-05 04:01:18 +01:00
|
|
|
|
2023-04-25 15:46:09 +02:00
|
|
|
home.sessionVariables.QT_SCREEN_SCALE_FACTORS = 1.4; # Bigger text in qt apps
|
2023-04-30 04:30:15 +02:00
|
|
|
|
|
|
|
satellite = {
|
|
|
|
# Simlink some commonly modified dotfiles outside the store
|
|
|
|
dev.enable = true;
|
|
|
|
|
|
|
|
# Set up my custom imperanence wrapper
|
|
|
|
persistence = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# Actual data/media (eg: projects, images, videos, etc)
|
|
|
|
at.data.path = "/persist/data";
|
|
|
|
|
|
|
|
# App state I want to keep
|
|
|
|
at.state.path = "/persist/state";
|
|
|
|
|
|
|
|
# App state which I should be able to delete at any point
|
|
|
|
at.cache.path = "/persist/cache";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-04-27 15:36:14 +02:00
|
|
|
|
|
|
|
# Temp stuff
|
2023-05-18 01:56:19 +02:00
|
|
|
# systemd.servinces.dbus-update-activation-environment = {
|
|
|
|
# script = lib.escapeShellArgs "${pkgs.dbu}/bin/dbus-update-activation-environment --systemd --all";
|
|
|
|
# serviceConfig.Restart = "no";
|
|
|
|
# serviceConfig.User = config.home.user;
|
|
|
|
# };
|
|
|
|
xsession.initExtra = "${pkgs.dbus}/bin/dbus-update-activation-environment --systemd --all";
|
2022-12-28 13:27:18 +01:00
|
|
|
}
|