1
Fork 0
satellite/home/tethys.nix

76 lines
1.8 KiB
Nix
Raw Normal View History

2024-08-26 17:38:47 +02:00
{ pkgs, ... }:
{
2022-12-28 13:27:18 +01:00
imports = [
2023-12-02 00:46:56 +01:00
./global.nix
2023-05-28 02:00:10 +02:00
./features/desktop/zathura.nix
./features/desktop/spotify.nix
2024-05-01 04:35:50 +02:00
./features/desktop/obsidian.nix
2024-07-26 20:18:26 +02:00
./features/desktop/foot.nix
2023-05-28 02:00:10 +02:00
./features/desktop/firefox
./features/desktop/discord
2024-02-01 00:04:04 +01:00
./features/cli/catgirl.nix
2024-08-27 23:47:44 +02:00
./features/cli/gpg.nix
2024-02-26 12:56:54 +01:00
./features/cli/lazygit.nix
2024-08-27 23:47:44 +02:00
./features/cli/nix-index.nix
./features/cli/pass.nix
./features/cli/productivity
./features/cli/zellij.nix
2023-05-28 02:00:10 +02:00
./features/wayland/hyprland
2023-12-10 23:48:46 +01:00
./features/neovim
];
2023-03-01 16:58:56 +01:00
# Arbitrary extra packages
home.packages = with pkgs; [
2023-12-02 00:46:56 +01:00
# {{{ Communication
2023-12-10 12:55:54 +01:00
# signal-desktop # Signal client
2023-04-27 01:08:20 +02:00
element-desktop # Matrix client
2023-12-10 12:55:54 +01:00
# zoom-us # Zoom client 🤮
2023-12-02 00:46:56 +01:00
# }}}
2024-08-26 17:38:47 +02:00
# {{{ Editors for different formats
2024-07-26 20:18:26 +02:00
gimp # Image editing
2023-12-10 12:55:54 +01:00
# lmms # Music software
2023-12-07 22:35:57 +01:00
# kicad # PCB editing
2023-12-10 12:55:54 +01:00
# libreoffice # Free office suite
2023-12-02 00:46:56 +01:00
# }}}
2024-08-26 17:38:47 +02:00
# {{{ Gaming
2023-12-10 12:55:54 +01:00
# wine # Windows compat layer or whatever
# lutris # Game launcher
2023-12-02 00:46:56 +01:00
# }}}
# {{{ Clis
sops # Secret editing
2023-12-10 12:55:54 +01:00
# sherlock # Search for usernames across different websites
2023-12-02 00:46:56 +01:00
# }}}
2024-08-26 17:38:47 +02:00
# {{{ Misc
bitwarden # Password-manager
2024-04-01 05:57:56 +02:00
qbittorrent # Torrent client
2023-04-27 01:08:20 +02:00
# google-chrome # Not my primary browser, but sometimes needed in webdev
2024-05-01 04:35:50 +02:00
# plover.dev # steno engine
2024-07-26 20:18:26 +02:00
overskride # Bluetooth client
2024-08-26 17:38:47 +02:00
# }}}
# {{{ Media playing/recording
mpv # Video player
imv # Image viewer
# peek # GIF recorder
# obs-studio # video recorder
# }}}
2022-12-28 13:27:18 +01:00
];
home.sessionVariables.QT_SCREEN_SCALE_FACTORS = 1.4; # Bigger text in qt apps
2024-08-26 17:38:47 +02:00
home.stateVersion = "23.05";
2023-04-30 04:30:15 +02:00
satellite = {
# Symlink some commonly modified dotfiles outside the nix store
2023-04-30 04:30:15 +02:00
dev.enable = true;
2024-08-26 17:38:47 +02:00
monitors = [
{
name = "eDP-1";
width = 1920;
height = 1080;
}
];
2023-11-13 04:31:54 +01:00
};
2022-12-28 13:27:18 +01:00
}