aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/hjem.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-03-04 16:48:13 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-03-04 16:49:11 -0600
commit3ccf3147edf663271960826c79a4213bc3b3eb8f (patch)
treebc8f66053ea692cd97bcc733944eb4eff9d1f679 /hosts/mercury/hjem.nix
parent49d711586bfa523d5d1385373df6c422bf35b712 (diff)
refactor mercury config
Diffstat (limited to 'hosts/mercury/hjem.nix')
-rw-r--r--hosts/mercury/hjem.nix46
1 files changed, 15 insertions, 31 deletions
diff --git a/hosts/mercury/hjem.nix b/hosts/mercury/hjem.nix
index 793ee2a..bb08a33 100644
--- a/hosts/mercury/hjem.nix
+++ b/hosts/mercury/hjem.nix
@@ -1,40 +1,28 @@
-{
- pkgs,
- inputs,
- ...
-}: let
- captiveBrowserDesktop = pkgs.makeDesktopItem {
- name = "captive-browser";
- desktopName = "Captive Browser";
- exec = "${pkgs.captive-browser}/bin/captive-browser";
- icon = "web-browser";
- terminal = false;
- categories = ["Application"];
- };
-in {
+{pkgs, ...}: {
packages = with pkgs; [
- tor-browser # don't ask
-
obsidian
- kdePackages.kleopatra
anki
- musescore
libreoffice-qt
- mpv
- bluetuith
-
+ kdePackages.kleopatra
prismlauncher
+ mpv
+ musescore
vital
- captive-browser # https://words.filippo.io/captive-browser
- captiveBrowserDesktop
- # inputs.glide-browser.packages."x86_64-linux".default
- # inputs.vermilion.packages."x86_64-linux".default
+ bluetuith
+ (pkgs.callPackage ../../pkgs/yo {})
- # (pkgs.callPackage ../../pkgs/yoshi.nix {inherit inputs;})
- (pkgs.callPackage ../../pkgs/yo {inherit inputs;})
+ captive-browser # https://words.filippo.io/captive-browser
+ (pkgs.makeDesktopItem {
+ name = "captive-browser";
+ desktopName = "Captive Browser";
+ exec = "${pkgs.captive-browser}/bin/captive-browser";
+ icon = "web-browser";
+ terminal = false;
+ categories = ["Application"];
+ })
];
files.".config/captive-browser.toml".text = ''
@@ -51,8 +39,4 @@ in {
socks5-addr = "localhost:1666"
'';
-
- files.".config/yo.conf".text = ''
- sudo run0 --background=
- '';
}