This commit is contained in:
Annika Merris 2024-05-18 10:02:52 -04:00
parent 505247cf5f
commit fc3e307d0c
3 changed files with 17 additions and 88 deletions

87
flake.lock generated
View file

@ -1,36 +1,5 @@
{ {
"nodes": { "nodes": {
"catppuccin-vsc": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1713966373,
"narHash": "sha256-8bMRH+z426e6zWcS15QZsQ8moSAKbEDjtBnAE10+DW8=",
"type": "tarball",
"url": "https://flakehub.com/f/catppuccin/vscode/%2A.tar.gz"
},
"original": {
"type": "tarball",
"url": "https://flakehub.com/f/catppuccin/vscode/%2A.tar.gz"
}
},
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1696426674,
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
"owner": "edolstra",
"repo": "flake-compat",
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
"type": "github"
},
"original": {
"owner": "edolstra",
"repo": "flake-compat",
"type": "github"
}
},
"flake-utils": { "flake-utils": {
"inputs": { "inputs": {
"systems": "systems" "systems": "systems"
@ -128,18 +97,14 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1712963716, "lastModified": 0,
"narHash": "sha256-WKm9CvgCldeIVvRz87iOMi8CFVB1apJlkUT4GGvA0iM=", "narHash": "sha256-/vno6oUIZDSLpqS/WOqNTHwVIakrNR7R+UutJVmfohs=",
"owner": "NixOS", "path": "/nix/store/hqzz459vrv62vjc470vig5lf5qm7d897-source",
"repo": "nixpkgs", "type": "path"
"rev": "cfd6b5fc90b15709b780a5a1619695a88505a176",
"type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "id": "nixpkgs",
"ref": "nixos-unstable", "type": "indirect"
"repo": "nixpkgs",
"type": "github"
} }
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
@ -159,18 +124,6 @@
} }
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": {
"lastModified": 0,
"narHash": "sha256-/vno6oUIZDSLpqS/WOqNTHwVIakrNR7R+UutJVmfohs=",
"path": "/nix/store/hqzz459vrv62vjc470vig5lf5qm7d897-source",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1715413075, "lastModified": 1715413075,
"narHash": "sha256-FCi3R1MeS5bVp0M0xTheveP6hhcCYfW/aghSTPebYL4=", "narHash": "sha256-FCi3R1MeS5bVp0M0xTheveP6hhcCYfW/aghSTPebYL4=",
@ -188,40 +141,16 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"catppuccin-vsc": "catppuccin-vsc",
"home-manager": "home-manager", "home-manager": "home-manager",
"lix": "lix", "lix": "lix",
"lix-module": "lix-module", "lix-module": "lix-module",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs",
"solaar": "solaar",
"sops-nix": "sops-nix" "sops-nix": "sops-nix"
} }
}, },
"solaar": {
"inputs": {
"flake-compat": "flake-compat",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1715441983,
"narHash": "sha256-CWRwtvZtcK8CDQCZhmv4nNp1Qmx3JXEidFQi/JMnX/M=",
"owner": "Svenum",
"repo": "Solaar-Flake",
"rev": "ee38dd45276fcb03174aec5301144514e66f4775",
"type": "github"
},
"original": {
"owner": "Svenum",
"ref": "latest",
"repo": "Solaar-Flake",
"type": "github"
}
},
"sops-nix": { "sops-nix": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_2",
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
}, },
"locked": { "locked": {

View file

@ -23,17 +23,17 @@
url = "github:Mic92/sops-nix"; url = "github:Mic92/sops-nix";
}; };
catppuccin-vsc = { # catppuccin-vsc = {
url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz"; # url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
}; # };
solaar = { # solaar = {
url = "github:Svenum/Solaar-Flake/latest"; # url = "github:Svenum/Solaar-Flake/latest";
inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";
}; # };
}; };
outputs = { self, nixpkgs, lix-module, solaar, ... }@inputs: outputs = { self, nixpkgs, lix-module, ... }@inputs:
let let
system = "x86_64"; system = "x86_64";
globals = rec { globals = rec {

View file

@ -1,7 +1,7 @@
# Kim # Kim
# System configuration for my desktop # System configuration for my desktop
{ inputs, globals, overlays, ... }: { inputs, globals, ... }:
with inputs; with inputs;