From 3ac21fe70e1843e5dbd7598e5eed5c2868d3c27f Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Thu, 8 Aug 2024 23:44:36 -0400 Subject: [PATCH 1/7] add stylix Signed-off-by: ahuston-0 --- flake.lock | 68 ++++++++++++++++++++++++++++++++++ flake.nix | 9 +++++ systems/artemision/default.nix | 1 + users/alice/home.nix | 1 + 4 files changed, 79 insertions(+) diff --git a/flake.lock b/flake.lock index ce31820..127c2dc 100644 --- a/flake.lock +++ b/flake.lock @@ -77,6 +77,22 @@ "type": "github" } }, + "fromYaml": { + "flake": false, + "locked": { + "lastModified": 1689549921, + "narHash": "sha256-iX0pk/uB019TdBGlaJEWvBCfydT6sRq+eDcGPifVsCM=", + "owner": "SenchoPens", + "repo": "fromYaml", + "rev": "11fbbbfb32e3289d3c631e0134a23854e7865c84", + "type": "github" + }, + "original": { + "owner": "SenchoPens", + "repo": "fromYaml", + "type": "github" + } + }, "gitignore": { "inputs": { "nixpkgs": [ @@ -98,6 +114,23 @@ "type": "github" } }, + "gnome-shell": { + "flake": false, + "locked": { + "lastModified": 1713702291, + "narHash": "sha256-zYP1ehjtcV8fo+c+JFfkAqktZ384Y+y779fzmR9lQAU=", + "owner": "GNOME", + "repo": "gnome-shell", + "rev": "0d0aadf013f78a7f7f1dc984d0d812971864b934", + "type": "github" + }, + "original": { + "owner": "GNOME", + "ref": "46.1", + "repo": "gnome-shell", + "type": "github" + } + }, "home-manager": { "inputs": { "nixpkgs": [ @@ -318,6 +351,7 @@ "rust-overlay": "rust-overlay", "sops-nix": "sops-nix", "systems": "systems", + "stylix": "stylix", "wired-notify": "wired-notify" } }, @@ -361,6 +395,40 @@ "type": "github" } }, + "stylix": { + "inputs": { + "base16": "base16", + "base16-fish": "base16-fish", + "base16-foot": "base16-foot", + "base16-helix": "base16-helix", + "base16-kitty": "base16-kitty", + "base16-tmux": "base16-tmux", + "base16-vim": "base16-vim", + "flake-compat": [ + "flake-compat" + ], + "gnome-shell": "gnome-shell", + "home-manager": [ + "home-manager" + ], + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1722946882, + "narHash": "sha256-mxtnMye8gs82tdQbVC+g6v3aPOZlH150f9WyntHIkTg=", + "owner": "danth", + "repo": "stylix", + "rev": "5853f1a8bd072f2ebabfc3de3973084353cf6f1e", + "type": "github" + }, + "original": { + "owner": "danth", + "repo": "stylix", + "type": "github" + } + }, "systems": { "locked": { "lastModified": 1681028828, diff --git a/flake.nix b/flake.nix index d669454..979f945 100644 --- a/flake.nix +++ b/flake.nix @@ -102,6 +102,15 @@ }; }; + stylix = { + url = "github:danth/stylix"; + inputs = { + flake-compat.follows = "flake-compat"; + home-manager.follows = "home-manager"; + nixpkgs.follows = "nixpkgs"; + }; + }; + wired-notify = { url = "github:Toqozz/wired-notify"; inputs = { diff --git a/systems/artemision/default.nix b/systems/artemision/default.nix index bceb0f4..538e135 100644 --- a/systems/artemision/default.nix +++ b/systems/artemision/default.nix @@ -7,6 +7,7 @@ users = [ "alice" ]; modules = [ inputs.nixos-hardware.nixosModules.framework-16-7040-amd + inputs.stylix.nixosModules.stylix { environment.systemPackages = [ inputs.wired-notify.packages.x86_64-linux.default diff --git a/users/alice/home.nix b/users/alice/home.nix index 892eb7c..237ef68 100644 --- a/users/alice/home.nix +++ b/users/alice/home.nix @@ -68,6 +68,7 @@ diesel-cli tealdeer helix + ripunzip # nix specific packages nix-output-monitor -- 2.48.1 From 64f28b82d2bcca51e52c97a9b912d47a84d87de4 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Fri, 9 Aug 2024 11:11:04 -0400 Subject: [PATCH 2/7] add stylix to artemision config --- systems/artemision/configuration.nix | 15 ++++++++------- systems/artemision/stylix.nix | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 7 deletions(-) create mode 100644 systems/artemision/stylix.nix diff --git a/systems/artemision/configuration.nix b/systems/artemision/configuration.nix index a78a1f7..6f076a6 100644 --- a/systems/artemision/configuration.nix +++ b/systems/artemision/configuration.nix @@ -6,17 +6,18 @@ }: { imports = [ - ./programs.nix - ./desktop.nix - ./wifi.nix - ./zerotier.nix - ./fonts.nix - ./polkit.nix ./audio.nix + ./desktop.nix ./fingerprint.nix - ./steam.nix + ./fonts.nix ./graphics.nix ./libvirt.nix + ./polkit.nix + ./programs.nix + ./steam.nix + ./stylix.nix + ./wifi.nix + ./zerotier.nix ]; time.timeZone = "America/New_York"; diff --git a/systems/artemision/stylix.nix b/systems/artemision/stylix.nix new file mode 100644 index 0000000..ecee556 --- /dev/null +++ b/systems/artemision/stylix.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: +let + randWallpaper = pkgs.runCommand "stylix-wallpaper" { } '' + numWallpapers = + $((1 + $RANDOM % 10)) + + ''; +in +{ + stylix = { + enable = true; + image = randWallpaper; + polarity = "dark"; + }; +} -- 2.48.1 From 46d4dc414c8c2af429ff0ccc17a2c0adceeaa693 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Mon, 3 Mar 2025 12:05:07 -0500 Subject: [PATCH 3/7] re-add stylix --- flake.lock | 353 ++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 338 insertions(+), 15 deletions(-) diff --git a/flake.lock b/flake.lock index 127c2dc..5f1b821 100644 --- a/flake.lock +++ b/flake.lock @@ -1,5 +1,72 @@ { "nodes": { + "base16": { + "inputs": { + "fromYaml": "fromYaml" + }, + "locked": { + "lastModified": 1732200724, + "narHash": "sha256-+R1BH5wHhfnycySb7Sy5KbYEaTJZWm1h+LW1OtyhiTs=", + "owner": "SenchoPens", + "repo": "base16.nix", + "rev": "153d52373b0fb2d343592871009a286ec8837aec", + "type": "github" + }, + "original": { + "owner": "SenchoPens", + "repo": "base16.nix", + "type": "github" + } + }, + "base16-fish": { + "flake": false, + "locked": { + "lastModified": 1622559957, + "narHash": "sha256-PebymhVYbL8trDVVXxCvZgc0S5VxI7I1Hv4RMSquTpA=", + "owner": "tomyun", + "repo": "base16-fish", + "rev": "2f6dd973a9075dabccd26f1cded09508180bf5fe", + "type": "github" + }, + "original": { + "owner": "tomyun", + "repo": "base16-fish", + "type": "github" + } + }, + "base16-helix": { + "flake": false, + "locked": { + "lastModified": 1736852337, + "narHash": "sha256-esD42YdgLlEh7koBrSqcT7p2fsMctPAcGl/+2sYJa2o=", + "owner": "tinted-theming", + "repo": "base16-helix", + "rev": "03860521c40b0b9c04818f2218d9cc9efc21e7a5", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "base16-helix", + "type": "github" + } + }, + "base16-vim": { + "flake": false, + "locked": { + "lastModified": 1732806396, + "narHash": "sha256-e0bpPySdJf0F68Ndanwm+KWHgQiZ0s7liLhvJSWDNsA=", + "owner": "tinted-theming", + "repo": "base16-vim", + "rev": "577fe8125d74ff456cf942c733a85d769afe58b7", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "base16-vim", + "rev": "577fe8125d74ff456cf942c733a85d769afe58b7", + "type": "github" + } + }, "firefox-addons": { "inputs": { "flake-utils": [ @@ -25,6 +92,22 @@ "type": "gitlab" } }, + "firefox-gnome-theme": { + "flake": false, + "locked": { + "lastModified": 1739223196, + "narHash": "sha256-vAxN2f3rvl5q62gQQjZGVSvF93nAsOxntuFz+e/655w=", + "owner": "rafaelmardojai", + "repo": "firefox-gnome-theme", + "rev": "a89108e6272426f4eddd93ba17d0ea101c34fb21", + "type": "github" + }, + "original": { + "owner": "rafaelmardojai", + "repo": "firefox-gnome-theme", + "type": "github" + } + }, "flake-compat": { "locked": { "lastModified": 1733328505, @@ -57,6 +140,28 @@ "type": "github" } }, + "flake-parts_2": { + "inputs": { + "nixpkgs-lib": [ + "stylix", + "nur", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1733312601, + "narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, "flake-utils": { "inputs": { "systems": [ @@ -77,14 +182,35 @@ "type": "github" } }, + "flake-utils_2": { + "inputs": { + "systems": [ + "stylix", + "systems" + ] + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "fromYaml": { "flake": false, "locked": { - "lastModified": 1689549921, - "narHash": "sha256-iX0pk/uB019TdBGlaJEWvBCfydT6sRq+eDcGPifVsCM=", + "lastModified": 1731966426, + "narHash": "sha256-lq95WydhbUTWig/JpqiB7oViTcHFP8Lv41IGtayokA8=", "owner": "SenchoPens", "repo": "fromYaml", - "rev": "11fbbbfb32e3289d3c631e0134a23854e7865c84", + "rev": "106af9e2f715e2d828df706c386a685698f3223b", "type": "github" }, "original": { @@ -93,6 +219,32 @@ "type": "github" } }, + "git-hooks": { + "inputs": { + "flake-compat": [ + "stylix", + "flake-compat" + ], + "gitignore": "gitignore_2", + "nixpkgs": [ + "stylix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1737465171, + "narHash": "sha256-R10v2hoJRLq8jcL4syVFag7nIGE7m13qO48wRIukWNg=", + "owner": "cachix", + "repo": "git-hooks.nix", + "rev": "9364dc02281ce2d37a1f55b6e51f7c0f65a75f17", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "git-hooks.nix", + "type": "github" + } + }, "gitignore": { "inputs": { "nixpkgs": [ @@ -114,19 +266,41 @@ "type": "github" } }, + "gitignore_2": { + "inputs": { + "nixpkgs": [ + "stylix", + "git-hooks", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709087332, + "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, "gnome-shell": { "flake": false, "locked": { - "lastModified": 1713702291, - "narHash": "sha256-zYP1ehjtcV8fo+c+JFfkAqktZ384Y+y779fzmR9lQAU=", + "lastModified": 1732369855, + "narHash": "sha256-JhUWbcYPjHO3Xs3x9/Z9RuqXbcp5yhPluGjwsdE2GMg=", "owner": "GNOME", "repo": "gnome-shell", - "rev": "0d0aadf013f78a7f7f1dc984d0d812971864b934", + "rev": "dadd58f630eeea41d645ee225a63f719390829dc", "type": "github" }, "original": { "owner": "GNOME", - "ref": "46.1", + "ref": "47.2", "repo": "gnome-shell", "type": "github" } @@ -309,6 +483,29 @@ "type": "github" } }, + "nur": { + "inputs": { + "flake-parts": "flake-parts_2", + "nixpkgs": [ + "stylix", + "nixpkgs" + ], + "treefmt-nix": "treefmt-nix" + }, + "locked": { + "lastModified": 1740408283, + "narHash": "sha256-2xECnhgF3MU9YjmvOkrRp8wRFo2OjjewgCtlfckhL5s=", + "owner": "nix-community", + "repo": "NUR", + "rev": "496a4a11162bdffb9a7b258942de138873f019f7", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "NUR", + "type": "github" + } + }, "pre-commit-hooks": { "inputs": { "flake-compat": [ @@ -350,8 +547,8 @@ "pre-commit-hooks": "pre-commit-hooks", "rust-overlay": "rust-overlay", "sops-nix": "sops-nix", - "systems": "systems", "stylix": "stylix", + "systems": "systems_2", "wired-notify": "wired-notify" } }, @@ -399,28 +596,35 @@ "inputs": { "base16": "base16", "base16-fish": "base16-fish", - "base16-foot": "base16-foot", "base16-helix": "base16-helix", - "base16-kitty": "base16-kitty", - "base16-tmux": "base16-tmux", "base16-vim": "base16-vim", + "firefox-gnome-theme": "firefox-gnome-theme", "flake-compat": [ "flake-compat" ], + "flake-utils": "flake-utils_2", + "git-hooks": "git-hooks", "gnome-shell": "gnome-shell", "home-manager": [ "home-manager" ], "nixpkgs": [ "nixpkgs" - ] + ], + "nur": "nur", + "systems": "systems", + "tinted-foot": "tinted-foot", + "tinted-kitty": "tinted-kitty", + "tinted-schemes": "tinted-schemes", + "tinted-tmux": "tinted-tmux", + "tinted-zed": "tinted-zed" }, "locked": { - "lastModified": 1722946882, - "narHash": "sha256-mxtnMye8gs82tdQbVC+g6v3aPOZlH150f9WyntHIkTg=", + "lastModified": 1740959323, + "narHash": "sha256-UtSKsLCWwA4wPFm7mgl33qeu8sj0on9Hyt3YhDWWkAM=", "owner": "danth", "repo": "stylix", - "rev": "5853f1a8bd072f2ebabfc3de3973084353cf6f1e", + "rev": "489833b201a84488c6b4371a261fdbcafa6abcb6", "type": "github" }, "original": { @@ -444,6 +648,125 @@ "type": "github" } }, + "systems_2": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "tinted-foot": { + "flake": false, + "locked": { + "lastModified": 1726913040, + "narHash": "sha256-+eDZPkw7efMNUf3/Pv0EmsidqdwNJ1TaOum6k7lngDQ=", + "owner": "tinted-theming", + "repo": "tinted-foot", + "rev": "fd1b924b6c45c3e4465e8a849e67ea82933fcbe4", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "tinted-foot", + "rev": "fd1b924b6c45c3e4465e8a849e67ea82933fcbe4", + "type": "github" + } + }, + "tinted-kitty": { + "flake": false, + "locked": { + "lastModified": 1716423189, + "narHash": "sha256-2xF3sH7UIwegn+2gKzMpFi3pk5DlIlM18+vj17Uf82U=", + "owner": "tinted-theming", + "repo": "tinted-kitty", + "rev": "eb39e141db14baef052893285df9f266df041ff8", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "tinted-kitty", + "rev": "eb39e141db14baef052893285df9f266df041ff8", + "type": "github" + } + }, + "tinted-schemes": { + "flake": false, + "locked": { + "lastModified": 1740351358, + "narHash": "sha256-Hdk850xgAd3DL8KX0AbyU7tC834d3Lej1jOo3duWiOA=", + "owner": "tinted-theming", + "repo": "schemes", + "rev": "a1bc2bd89e693e7e3f5764cfe8114e2ae150e184", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "schemes", + "type": "github" + } + }, + "tinted-tmux": { + "flake": false, + "locked": { + "lastModified": 1740272597, + "narHash": "sha256-/etfUV3HzAaLW3RSJVwUaW8ULbMn3v6wbTlXSKbcoWQ=", + "owner": "tinted-theming", + "repo": "tinted-tmux", + "rev": "b6c7f46c8718cc484f2db8b485b06e2a98304cd0", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "tinted-tmux", + "type": "github" + } + }, + "tinted-zed": { + "flake": false, + "locked": { + "lastModified": 1725758778, + "narHash": "sha256-8P1b6mJWyYcu36WRlSVbuj575QWIFZALZMTg5ID/sM4=", + "owner": "tinted-theming", + "repo": "base16-zed", + "rev": "122c9e5c0e6f27211361a04fae92df97940eccf9", + "type": "github" + }, + "original": { + "owner": "tinted-theming", + "repo": "base16-zed", + "type": "github" + } + }, + "treefmt-nix": { + "inputs": { + "nixpkgs": [ + "stylix", + "nur", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1733222881, + "narHash": "sha256-JIPcz1PrpXUCbaccEnrcUS8jjEb/1vJbZz5KkobyFdM=", + "owner": "numtide", + "repo": "treefmt-nix", + "rev": "49717b5af6f80172275d47a418c9719a31a78b53", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "treefmt-nix", + "type": "github" + } + }, "wired-notify": { "inputs": { "flake-parts": [ -- 2.48.1 From 994ea667b293df6be97de4c1b81e39959c81d929 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Mon, 3 Mar 2025 17:32:47 -0500 Subject: [PATCH 4/7] remove hydrajobs to fix IFD --- flake.nix | 2 +- systems/artemision/stylix.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 979f945..51e55b0 100644 --- a/flake.nix +++ b/flake.nix @@ -149,7 +149,7 @@ rec { inherit lib; # for allowing use of custom functions in nix repl - hydraJobs = import ./hydra/jobs.nix { inherit inputs outputs systems; }; + #hydraJobs = import ./hydra/jobs.nix { inherit inputs outputs systems; }; formatter = forEachSystem (system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style); nixosConfigurations = genSystems inputs outputs src (src + "/systems"); diff --git a/systems/artemision/stylix.nix b/systems/artemision/stylix.nix index ecee556..af8ea65 100644 --- a/systems/artemision/stylix.nix +++ b/systems/artemision/stylix.nix @@ -10,6 +10,7 @@ in stylix = { enable = true; image = randWallpaper; + #image = "/home/alice/Pictures/Screenshots/screenshot_2024-12-04-2030.png"; polarity = "dark"; }; } -- 2.48.1 From 172ee58b0484fffa016cbc719ea2397af8b69b58 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Mon, 3 Mar 2025 23:27:03 -0500 Subject: [PATCH 5/7] stylix with hyprland wallpaper Signed-off-by: ahuston-0 --- systems/artemision/stylix.nix | 14 +++++++------- users/alice/home/hypr/hyprlock.nix | 18 ++++++++++-------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/systems/artemision/stylix.nix b/systems/artemision/stylix.nix index af8ea65..06053da 100644 --- a/systems/artemision/stylix.nix +++ b/systems/artemision/stylix.nix @@ -1,15 +1,15 @@ { pkgs, ... }: -let - randWallpaper = pkgs.runCommand "stylix-wallpaper" { } '' - numWallpapers = - $((1 + $RANDOM % 10)) +# let +# randWallpaper = pkgs.runCommand "stylix-wallpaper" { } '' +# numWallpapers = +# $((1 + $RANDOM % 10)) - ''; -in +# in { stylix = { enable = true; - image = randWallpaper; + image = "${pkgs.hyprland}/share/hypr/wall2.png"; + #image = "/home/alice/Pictures/Screenshots/screenshot_2024-12-04-2030.png"; polarity = "dark"; }; diff --git a/users/alice/home/hypr/hyprlock.nix b/users/alice/home/hypr/hyprlock.nix index b90b2e6..7bd68a0 100644 --- a/users/alice/home/hypr/hyprlock.nix +++ b/users/alice/home/hypr/hyprlock.nix @@ -15,9 +15,10 @@ }; background = { monitor = ""; - #path = /home/me/someImage.png # supports png, jpg, webp (no animations, though) - path = "screenshot"; - color = "rgba(25, 20, 20, 1.0)"; + # path = /home/me/someImage.png # supports png, jpg, webp (no animations, though) + path = lib.mkForce "screenshot"; + # disabling due to stylix + # color = "rgba(25, 20, 20, 1.0)"; # all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations blur_passes = 3; # 0 disables blurring @@ -55,17 +56,18 @@ dots_rounding = -1; # -1 default circle, -2 follow input-field rounding dots_fade_time = 200; # Milliseconds until a dot fully fades in dots_text_format = ""; # Text character used for the input indicator. Leave empty for a rectangle that will be rounded via dots_rounding (default). - outer_color = "rgb(151515)"; - inner_color = "rgb(200, 200, 200)"; - font_color = "rgb(10, 10, 10)"; + # disabling due to stylix + # outer_color = "rgb(151515)"; + # inner_color = "rgb(200, 200, 200)"; + # font_color = "rgb(10, 10, 10)"; font_family = "Noto Sans"; # Font used for placeholder_text, fail_text and dots_text_format. fade_on_empty = false; fade_timeout = 1000; # Milliseconds before fade_on_empty is triggered. placeholder_text = "Input Password..."; # Text rendered in the input box when it's empty. hide_input = false; rounding = -1; # -1 means complete rounding (circle/oval) - check_color = "rgb(204, 136, 34)"; - fail_color = "rgb(204, 34, 34)"; # if authentication failed, changes outer_color and fail message color + #check_color = "rgb(204, 136, 34)"; + #fail_color = "rgb(204, 34, 34)"; # if authentication failed, changes outer_color and fail message color fail_text = "$FAIL ($ATTEMPTS)"; # can be set to empty fail_timeout = 2000; # milliseconds before fail_text and fail_color disappears fail_transition = 300; # transition time in ms between normal outer_color and fail_color -- 2.48.1 From a06ff919c4aad678d3a3de963672213fc669d236 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Tue, 4 Mar 2025 01:14:09 -0500 Subject: [PATCH 6/7] remove misc zoom program Signed-off-by: ahuston-0 --- systems/artemision/programs.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/systems/artemision/programs.nix b/systems/artemision/programs.nix index 87c3335..74f50dd 100644 --- a/systems/artemision/programs.nix +++ b/systems/artemision/programs.nix @@ -111,6 +111,5 @@ yt-dlp zoom-us zoxide - zoom ]; } -- 2.48.1 From 66febb81f633c899889db4425060f9342bda3f8a Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Tue, 4 Mar 2025 01:21:28 -0500 Subject: [PATCH 7/7] remove redundant sops reference for non-existant service --- systems/artemision/configuration.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/systems/artemision/configuration.nix b/systems/artemision/configuration.nix index 6f076a6..07d8b51 100644 --- a/systems/artemision/configuration.nix +++ b/systems/artemision/configuration.nix @@ -90,12 +90,12 @@ sops = { defaultSopsFile = ./secrets.yaml; - secrets = { - "apps/spotify" = { - group = "audio"; - restartUnits = [ "spotifyd.service" ]; - mode = "0440"; - }; - }; + #secrets = { + # "apps/spotify" = { + # group = "audio"; + # restartUnits = [ "spotifyd.service" ]; + # mode = "0440"; + # }; + #}; }; } -- 2.48.1