Compare commits

..

No commits in common. "4b1c7e7bd1270d17ead48592e9b2d87134c8fd8c" and "734b043bc77cefa5eda3ca14e00b73cf48625bf2" have entirely different histories.

4 changed files with 1 additions and 49 deletions

21
flake.lock generated
View file

@ -22,26 +22,6 @@
"type": "github" "type": "github"
} }
}, },
"catppuccin-vsc": {
"inputs": {
"nixpkgs": [
"nixpkgs-unstable"
]
},
"locked": {
"lastModified": 1698626248,
"narHash": "sha256-oLkdb+041m26qU7SOy9vR8Hf6FejS1sjLnHghOya/5o=",
"owner": "catppuccin",
"repo": "vscode",
"rev": "e8dfc6d92dd33ffdd1db00b9b6cd1e78844dada4",
"type": "github"
},
"original": {
"owner": "catppuccin",
"repo": "vscode",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -274,7 +254,6 @@
"root": { "root": {
"inputs": { "inputs": {
"agenix": "agenix", "agenix": "agenix",
"catppuccin-vsc": "catppuccin-vsc",
"home-manager": "home-manager_2", "home-manager": "home-manager_2",
"home-manager-unstable": "home-manager-unstable", "home-manager-unstable": "home-manager-unstable",
"jovian": "jovian", "jovian": "jovian",

View file

@ -51,14 +51,9 @@ inputs = {
inputs.nixpkgs.follows = "nixpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs-unstable";
inputs.home-manager.follows = "home-manager-unstable"; inputs.home-manager.follows = "home-manager-unstable";
}; };
catppuccin-vsc = {
url = "github:catppuccin/vscode";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
}; };
outputs = { self, nixpkgs, nixpkgs-unstable, agenix, home-manager, home-manager-unstable, nixos-hardware, nix-impermanence, nix-index-db, nix-index-db-unstable, jovian, plasma-manager, catppuccin-vsc, ... } @inputs: { outputs = { self, nixpkgs, nixpkgs-unstable, agenix, home-manager, home-manager-unstable, nixos-hardware, nix-impermanence, nix-index-db, nix-index-db-unstable, jovian, plasma-manager, ... } @inputs: {
devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell { devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
name = "Environment for toast's nixos configurations"; name = "Environment for toast's nixos configurations";

View file

@ -7,6 +7,5 @@
./micro.nix ./micro.nix
./keepassxc.nix ./keepassxc.nix
./jamesdsp.nix ./jamesdsp.nix
./vscode.nix
]; ];
} }

View file

@ -1,21 +0,0 @@
{ config, pkgs, flakeSelf, ... }:
let inputs = flakeSelf.inputs; in
{
nixpkgs.overlays = [ inputs.catppuccin-vsc.overlays.default ];
home-manager.users.toast.programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = [
pkgs.catppuccin-vsc
];
userSettings = {
"workbench.colorTheme" = "Catppuccin Mocha";
"editor" = {
"fontFamily" = "JetBrainsMono Nerd Font";
"semanticHighlighting.enabled" = true;
};
terminal.integrated.minimumContrastRatio = 1;
window.titleBarStyle = "custom";
};
};
}