1

feat: purge cosmic

This commit is contained in:
Himadri Bhattacharjee
2025-01-26 17:17:47 +05:30
parent e3ae0e2b9d
commit 3600d98e88
4 changed files with 0 additions and 29 deletions

View File

@@ -1,6 +0,0 @@
{
nix.settings = {
substituters = [ "https://cosmic.cachix.org/" ];
trusted-public-keys = [ "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" ];
};
}

View File

@@ -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

View File

@@ -103,8 +103,6 @@
enable = true;
user = "h";
};
# desktopManager.cosmic.enable = true;
# displayManager.cosmic-greeter.enable = true;
};
users.users.h = {

View File

@@ -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";
};
};
}