flake.nix: add catppuccin/nix
hosts/dunamis/catppuccin.nix: add module hosts/dunamis/users/user/catppuccin.nix: add module Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
@ -3,19 +3,20 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
blueprint.url = "github:numtide/blueprint";
|
blueprint.url = "github:numtide/blueprint";
|
||||||
|
catppuccin.url = "github:catppuccin/nix";
|
||||||
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
||||||
disko.url = "github:nix-community/disko/latest";
|
disko.url = "github:nix-community/disko/latest";
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
hyprland.url = "github:hyprwm/Hyprland";
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
hyprsunset.url = "github:hyprwm/hyprsunset";
|
hyprsunset.url = "github:hyprwm/hyprsunset";
|
||||||
lix.url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0.tar.gz";
|
lix.url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0-1.tar.gz";
|
||||||
mysecrets.url = "git+ssh://gitea@gitea.linerds.us/unexplrd/nix-secrets";
|
mysecrets.url = "git+ssh://gitea@gitea.linerds.us/unexplrd/nix-secrets";
|
||||||
neve.url = "git+https://gitea.linerds.us/unexplrd/Neve";
|
# neve.url = "git+https://gitea.linerds.us/unexplrd/Neve";
|
||||||
nix-flatpak.url = "github:gmodena/nix-flatpak";
|
nix-flatpak.url = "github:gmodena/nix-flatpak";
|
||||||
nix-index-database.url = "github:nix-community/nix-index-database";
|
nix-index-database.url = "github:nix-community/nix-index-database";
|
||||||
nixos-cosmic.url = "github:lilyinstarlight/nixos-cosmic";
|
nixos-cosmic.url = "github:lilyinstarlight/nixos-cosmic";
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
||||||
nixvim.url = "github:nix-community/nixvim";
|
# nixvim.url = "github:nix-community/nixvim";
|
||||||
sops-nix.url = "github:mic92/sops-nix";
|
sops-nix.url = "github:mic92/sops-nix";
|
||||||
stylix.url = "github:danth/stylix";
|
stylix.url = "github:danth/stylix";
|
||||||
# TODO: somehow reduce the number of *.inputs.nixpkgs.follows = "nixpkgs" stuff, mb a function?
|
# TODO: somehow reduce the number of *.inputs.nixpkgs.follows = "nixpkgs" stuff, mb a function?
|
||||||
@ -29,7 +30,7 @@
|
|||||||
hyprsunset.inputs.nixpkgs.follows = "nixpkgs";
|
hyprsunset.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
lix.inputs.nixpkgs.follows = "nixpkgs";
|
lix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
mysecrets.flake = false;
|
mysecrets.flake = false;
|
||||||
neve.inputs.nixvim.follows = "nixvim";
|
# neve.inputs.nixvim.follows = "nixvim";
|
||||||
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
9
hosts/dunamis/catppuccin.nix
Normal file
9
hosts/dunamis/catppuccin.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{inputs, ...}: {
|
||||||
|
imports = with inputs; [
|
||||||
|
catppuccin.nixosModules.catppuccin
|
||||||
|
];
|
||||||
|
catppuccin = {
|
||||||
|
enable = true;
|
||||||
|
flavor = "latte";
|
||||||
|
};
|
||||||
|
}
|
9
hosts/dunamis/users/user/catppuccin.nix
Normal file
9
hosts/dunamis/users/user/catppuccin.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{inputs, ...}: {
|
||||||
|
imports = with inputs; [
|
||||||
|
catppuccin.homeManagerModules.catppuccin
|
||||||
|
];
|
||||||
|
catppuccin = {
|
||||||
|
enable = true;
|
||||||
|
flavor = "latte";
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user