Compare commits

..

No commits in common. "0386551a162c48888989379e561cd6f9fa91f57b" and "0afd702ecc6bb7908a045e000cbc0a8b1a104d61" have entirely different histories.

3 changed files with 5 additions and 99 deletions

View File

@ -115,39 +115,6 @@
"type": "github"
}
},
"flake-utils_2": {
"inputs": {
"systems": "systems_4"
},
"locked": {
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"flakey-profile": {
"locked": {
"lastModified": 1712898590,
"narHash": "sha256-FhGIEU93VHAChKEXx905TSiPZKga69bWl1VB37FK//I=",
"owner": "lf-",
"repo": "flakey-profile",
"rev": "243c903fd8eadc0f63d205665a92d4df91d42d9d",
"type": "github"
},
"original": {
"owner": "lf-",
"repo": "flakey-profile",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -332,44 +299,6 @@
"type": "github"
}
},
"lix": {
"flake": false,
"locked": {
"lastModified": 1723503926,
"narHash": "sha256-Rosl9iA9MybF5Bud4BTAQ9adbY81aGmPfV8dDBGl34s=",
"rev": "bcaeb6388b8916ac6d1736e3aa2b13313e6a6bd2",
"type": "tarball",
"url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/bcaeb6388b8916ac6d1736e3aa2b13313e6a6bd2.tar.gz?rev=bcaeb6388b8916ac6d1736e3aa2b13313e6a6bd2"
},
"original": {
"type": "tarball",
"url": "https://git.lix.systems/lix-project/lix/archive/2.91.0.tar.gz"
}
},
"lix-module": {
"inputs": {
"flake-utils": "flake-utils",
"flakey-profile": "flakey-profile",
"lix": "lix",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1723510904,
"narHash": "sha256-zNW/rqNJwhq2lYmQf19wJerRuNimjhxHKmzrWWFJYts=",
"ref": "refs/tags/2.91.0",
"rev": "622a2253a071a1fb97a4d3c8103a91114acc1140",
"revCount": 104,
"type": "git",
"url": "https://git.lix.systems/lix-project/nixos-module"
},
"original": {
"ref": "refs/tags/2.91.0",
"type": "git",
"url": "https://git.lix.systems/lix-project/nixos-module"
}
},
"nix-darwin": {
"inputs": {
"nixpkgs": [
@ -411,7 +340,6 @@
"anyrun": "anyrun",
"home-manager": "home-manager",
"hyprland": "hyprland",
"lix-module": "lix-module",
"nix-darwin": "nix-darwin",
"nixpkgs": "nixpkgs",
"woomer": "woomer"
@ -462,25 +390,10 @@
"type": "github"
}
},
"systems_4": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"woomer": {
"inputs": {
"crane": "crane",
"flake-utils": "flake-utils_2",
"flake-utils": "flake-utils",
"nixpkgs": [
"nixpkgs"
]

View File

@ -1,5 +1,5 @@
{
description = "SpyHoodle's personal nix system configurations";
description = "SpyHoodle Nix Configuration";
inputs = {
# Nixpkgs Unstable
@ -24,10 +24,6 @@
# Woomer
woomer.url = "github:coffeeispower/woomer";
woomer.inputs.nixpkgs.follows = "nixpkgs";
# Lix Module
lix-module.url = "git+https://git.lix.systems/lix-project/nixos-module?ref=refs/tags/2.91.0";
lix-module.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, nix-darwin, ... } @ inputs:
@ -71,7 +67,6 @@
# NixOS Modules
./systems/desktop
inputs.lix-module.nixosModules.default
];
};
@ -80,7 +75,6 @@
system = "aarch64-darwin";
specialArgs = {
inherit username;
inherit inputs;
};
modules = [
# Home Manager Modules
@ -89,7 +83,6 @@
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {
inherit username;
inherit inputs;
pkgs = nixpkgs_aarch64_darwin;
};
home-manager.users.${username}.imports = [
@ -100,7 +93,6 @@
# Nix Darwin Modules
./systems/laptop
inputs.lix-module.nixosModules.default
];
};

View File

@ -1,8 +1,9 @@
{ pkgs, lib, inputs, ... }:
{ pkgs, lib, ... }:
{
nix = {
package = lib.mkForce inputs.lix-module.packages.${pkgs.stdenv.hostPlatform.system}.default;
package = pkgs.nixVersions.latest;
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;