From 3600d98e88b77afcec2d0fe4606923d8bded28e2 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Sun, 26 Jan 2025 17:17:47 +0530 Subject: [PATCH] feat: purge cosmic --- cachix/nixos-cosmic.nix | 6 ------ flake.nix | 7 ------- hosts/default/configuration.nix | 2 -- hosts/default/home/hud.nix | 14 -------------- 4 files changed, 29 deletions(-) delete mode 100644 cachix/nixos-cosmic.nix delete mode 100644 hosts/default/home/hud.nix diff --git a/cachix/nixos-cosmic.nix b/cachix/nixos-cosmic.nix deleted file mode 100644 index 0b54b39..0000000 --- a/cachix/nixos-cosmic.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - nix.settings = { - substituters = [ "https://cosmic.cachix.org/" ]; - trusted-public-keys = [ "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" ]; - }; -} diff --git a/flake.nix b/flake.nix index 33e6bc0..347c9df 100644 --- a/flake.nix +++ b/flake.nix @@ -16,10 +16,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - nixos-cosmic = { - url = "github:lilyinstarlight/nixos-cosmic"; - inputs.nixpkgs.follows = "nixpkgs"; - }; stylix = { url = "github:danth/stylix"; inputs.nixpkgs.follows = "nixpkgs"; @@ -47,7 +43,6 @@ sops-nix, nix-on-droid, nix-index-database, - nixos-cosmic, stylix, mpv-sponsorblock, ... @@ -62,7 +57,6 @@ }; modules = [ ./hosts/default/configuration.nix - ./cachix/nixos-cosmic.nix ./cachix/cuda-maintainers.nix home-manager.nixosModules.home-manager ./mpv-sponsorblock/overlay.nix @@ -81,7 +75,6 @@ modules = [ ./hosts/default/configuration.nix ./hosts/default/secureboot.nix - ./cachix/nixos-cosmic.nix ./cachix/cuda-maintainers.nix home-manager.nixosModules.home-manager lanzaboote.nixosModules.lanzaboote diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index a55e6d8..b429608 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -103,8 +103,6 @@ enable = true; user = "h"; }; - # desktopManager.cosmic.enable = true; - # displayManager.cosmic-greeter.enable = true; }; users.users.h = { diff --git a/hosts/default/home/hud.nix b/hosts/default/home/hud.nix deleted file mode 100644 index e38fa62..0000000 --- a/hosts/default/home/hud.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ pkgs, ... }: { - home.packages = with pkgs; [ - ags - ]; - systemd.user.services.ags-hud = { - Unit = { - Description = "ags cyberpunk hud for my cosmic epoch setup"; - }; - Install.WantedBy = [ "xdg-desktop-autostart.target" ]; - Service = { - ExecStart = "${pkgs.ags}/bin/ags"; - }; - }; -}