Compare commits

..

2 commits

Author SHA1 Message Date
797260a0e9
flake.lock: update 2024-08-30 14:39:40 -07:00
0563316200
refactor: remove unused system attr 2024-08-30 14:37:51 -07:00
3 changed files with 22 additions and 32 deletions

View file

@ -24,11 +24,11 @@
}, },
"bleedingpkgs": { "bleedingpkgs": {
"locked": { "locked": {
"lastModified": 1724999960, "lastModified": 1725052531,
"narHash": "sha256-LB3jqSGW5u1ZcUcX6vO/qBOq5oXHlmOCxsTXGMEitp4=", "narHash": "sha256-eRSWmpnh2/6atOM+DkCrf+VBZqg2NxSh9Up2lK6/B0M=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b96f849e725333eb2b1c7f1cb84ff102062468ba", "rev": "30eba5df5538ec46ada854167701bb7c8e42956e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -502,11 +502,11 @@
"homebrew-cask": { "homebrew-cask": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1724991505, "lastModified": 1725053837,
"narHash": "sha256-xplxZ9sSj77RGM3JTEZp4yqYA2kVRW+YekMtW8kZzNk=", "narHash": "sha256-ERGXSQGANg73hrXK9/P5DP5b49hmfJNAAY5sXppZeZw=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-cask", "repo": "homebrew-cask",
"rev": "c2a643ff88de746ef183d96a36f87a4dfbe4883b", "rev": "81519d551a2908c0ec19a98cbe5df779fd390a51",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -518,11 +518,11 @@
"homebrew-core": { "homebrew-core": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1724991999, "lastModified": 1725053336,
"narHash": "sha256-neVN12lfbWQWkV2JXx2AYsnLiqakIX3L/Ww5EuAhUOk=", "narHash": "sha256-L/krhMEEm2eN9kKpcczRVLChl0iqghTs8LSuFr5qOMA=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-core", "repo": "homebrew-core",
"rev": "78b7d57e2fd34bcb3c0590d64c273afeb0a5e7ff", "rev": "9be33f9f1c6ad4dcb91508431bfd6f500f2a422f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -601,11 +601,11 @@
"rust-overlay": "rust-overlay_3" "rust-overlay": "rust-overlay_3"
}, },
"locked": { "locked": {
"lastModified": 1724892587, "lastModified": 1725041447,
"narHash": "sha256-Xs00/x4R9QD7ziI3fI0BPsLkk2VtwwONvL6j6zPfP8Y=", "narHash": "sha256-ueGJZ8PzrlEx3mLSFz7NhJDNcX3mLwAs6SGSuhxBMnQ=",
"owner": "josueBarretogit", "owner": "josueBarretogit",
"repo": "manga-tui", "repo": "manga-tui",
"rev": "d67403f23d30dafeac140f6d242cb7d2d3046b56", "rev": "26313d00fcecb4bc95a651a2b7e7a030c7fcf621",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -741,11 +741,11 @@
}, },
"nixpkgs-unstable-small": { "nixpkgs-unstable-small": {
"locked": { "locked": {
"lastModified": 1724938759, "lastModified": 1725009565,
"narHash": "sha256-1fBHjcU/bh+ivx/uttMjgF5eTI1s9nyxyrZmgEeutns=", "narHash": "sha256-uTfnGf6ZJ0oTTdUbs41d08d56u7jcTSlwCuI753rTWc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "314ab2d44863ce4e5fd47b6575938b323804f1f4", "rev": "58939e5336bc0fa75e52df42bdc48bc66d5796e0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1221,11 +1221,11 @@
"nixpkgs": "nixpkgs_7" "nixpkgs": "nixpkgs_7"
}, },
"locked": { "locked": {
"lastModified": 1725007108, "lastModified": 1725053855,
"narHash": "sha256-lMxwwDw93susV//JRVWsDctNdjAn8FVGeAlOTlDaGZc=", "narHash": "sha256-x0QWLJAF2bXPcjzoqTQMN022oN9wuSbDvqgZuG1XxY0=",
"owner": "youwen5", "owner": "youwen5",
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"rev": "a582c2aa95578087eb0107fa35ed116a683476cf", "rev": "63438969a0c83f857880a45f1e29045efa526ea4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -86,27 +86,20 @@
nixosConfigurations = { nixosConfigurations = {
demeter = nixpkgs.lib.nixosSystem { demeter = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; specialArgs = {inherit inputs;};
specialArgs = {
inherit inputs;
};
modules = [ modules = [
./hosts/demeter ./hosts/demeter
]; ];
}; };
callisto = nixpkgs.lib.nixosSystem { callisto = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {inherit inputs;};
inherit inputs;
};
modules = [ modules = [
./hosts/callisto ./hosts/callisto
]; ];
}; };
adrastea = nixpkgs.lib.nixosSystem { adrastea = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {inherit inputs;};
inherit inputs;
};
modules = [ modules = [
./hosts/adrastea ./hosts/adrastea
]; ];

View file

@ -23,10 +23,7 @@
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.backupFileExtension = "backup"; home-manager.backupFileExtension = "backup";
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = {inherit inputs;};
inherit inputs;
inherit system;
};
home-manager.users.youwen = { home-manager.users.youwen = {
imports = [ imports = [
../../users/youwen/linux/desktop ../../users/youwen/linux/desktop