feat: enabled cosmic

This commit is contained in:
Nick 2025-10-02 20:19:26 -05:00
parent 71dad853a4
commit 0665b883ab
4 changed files with 18 additions and 25 deletions

8
flake.lock generated
View file

@ -147,11 +147,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1759435455, "lastModified": 1759447954,
"narHash": "sha256-foBQIu1JESOiUdY6eUaFZEzN2hEfkbV6J+2HP3zpENo=", "narHash": "sha256-w+d1Yu+8sSSmg+1ly/p1N3ENE9AkapR4AbaJx6pXvQA=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "3bc008796c23b295e90770c44253bace41e86776", "rev": "b923bf6c6a13b7629bbb534ced981363a58944b4",
"revCount": 13, "revCount": 19,
"type": "git", "type": "git",
"url": "ssh://git@gitlab.com/uprootnutrition/filesorter.git" "url": "ssh://git@gitlab.com/uprootnutrition/filesorter.git"
}, },

View file

@ -64,18 +64,10 @@
url = "github:danyspin97/wpaperd"; url = "github:danyspin97/wpaperd";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# zed-editor = {
# url = "github:zed-industries/zed";
# inputs.nixpkgs.follows = "nixpkgs";
# };
zen-browser = { zen-browser = {
url = "gitlab:InvraNet/zen-flake"; url = "gitlab:InvraNet/zen-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# nix-comfyui = {
# url = "gitlab:upRootNutrition/nix-comfyui";
# inputs.nixpkgs.follows = "nixpkgs";
# };
upRootNutrition = { upRootNutrition = {
url = "git+ssh://git@gitlab.com/uprootnutrition/website.git"; url = "git+ssh://git@gitlab.com/uprootnutrition/website.git";
}; };

View file

@ -9,10 +9,11 @@ in
inherit (modules) inherit (modules)
syncthing syncthing
ollama ollama
plasma cosmic
hypr # plasma
niri # hypr
wayland # niri
# wayland
network network
searx searx
flatpak flatpak

View file

@ -1,12 +1,12 @@
{ {
# nix.settings = { nix.settings = {
# substituters = [ substituters = [
# "https://cosmic.cachix.org/" "https://cosmic.cachix.org/"
# ]; ];
# trusted-public-keys = [ trusted-public-keys = [
# "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE="
# ]; ];
# }; };
environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1; environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1;
services = { services = {
@ -14,6 +14,6 @@
enable = true; enable = true;
xwayland.enable = true; xwayland.enable = true;
}; };
# displayManager.cosmic-greeter.enable = true; displayManager.cosmic-greeter.enable = true;
}; };
} }