This commit is contained in:
alsaiduq-lab 2026-01-01 21:19:54 -07:00
parent f57bd9ed3c
commit 968170a677
2 changed files with 16 additions and 25 deletions

26
flake.lock generated
View file

@ -64,11 +64,11 @@
"quickshell": "quickshell" "quickshell": "quickshell"
}, },
"locked": { "locked": {
"lastModified": 1767299095, "lastModified": 1767325825,
"narHash": "sha256-a/DHoBafFIrhkN0FSNSk5fbWrslBptnkgs/LDk5QzEY=", "narHash": "sha256-DVQByhV9jLS8Zn2HsYdHMoaH2h+XP90NEVk2f6vhgGg=",
"owner": "AvengeMedia", "owner": "AvengeMedia",
"repo": "DankMaterialShell", "repo": "DankMaterialShell",
"rev": "bae32e51ff6d873e51e29fe20fee378714aba150", "rev": "5e111d89a5e8a3aa473bedde642af63a756a96f2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -191,11 +191,11 @@
"zon2nix": "zon2nix" "zon2nix": "zon2nix"
}, },
"locked": { "locked": {
"lastModified": 1767302070, "lastModified": 1767313275,
"narHash": "sha256-hfbgjYOP+YC5w2AcWK1fn5h0JyG4GI9UPUmKmBI+oVc=", "narHash": "sha256-yp3n4aKlG1lZDkQl3sDD7smjNjGFeEErVaiQlorzxrk=",
"owner": "ghostty-org", "owner": "ghostty-org",
"repo": "ghostty", "repo": "ghostty",
"rev": "9a21e563114b8b1eb1501d03a087af8d23e508d3", "rev": "1c2db85aa41c7d929cb23b408229e297dce2758a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -396,11 +396,11 @@
"hyprland-dots": { "hyprland-dots": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1767234512, "lastModified": 1767319963,
"narHash": "sha256-s7e3tsx5Nr8RIGWCNZHQuh1wBHOik93HxHqs5dXLURI=", "narHash": "sha256-UrmhsIUdovBWZ2hQJ6G86xKVOuk4vFEa3IIXCsvqpFk=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "ef856f3eb18059621a618e62612f028dd6ea5869", "rev": "b730372809923a9f629ad436a1f4af1cae96914e",
"revCount": 26, "revCount": 27,
"type": "git", "type": "git",
"url": "ssh://git@github.com/alsaiduq-lab/hyprland-dots" "url": "ssh://git@github.com/alsaiduq-lab/hyprland-dots"
}, },
@ -664,11 +664,11 @@
"nixpkgs": "nixpkgs_7" "nixpkgs": "nixpkgs_7"
}, },
"locked": { "locked": {
"lastModified": 1767060285, "lastModified": 1767319620,
"narHash": "sha256-E8oSyoOQnqVCSg7+D0512fnL8JeltFqWaKETJrmo1Q8=", "narHash": "sha256-salrbdHzVTRpgnASAJMX61kuqrg65KiuQ2yxkrVcB8Y=",
"owner": "fufexan", "owner": "fufexan",
"repo": "nix-gaming", "repo": "nix-gaming",
"rev": "45ce6a5470514514079e2d65eea7dddafba6bfc8", "rev": "f39d1b692c466255e7f5b2fa8ac5b8aead5eadb5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -99,15 +99,8 @@
} @ inputs: let } @ inputs: let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = nixpkgs.legacyPackages.${system};
inherit system; unstablePkgs = unstable.legacyPackages.${system};
config = {allowUnfree = true;};
};
unstablePkgs = import unstable {
inherit system;
config = {allowUnfree = true;};
};
customPkgs = import "${self}/pkgs" { customPkgs = import "${self}/pkgs" {
inherit pkgs; inherit pkgs;
@ -125,7 +118,6 @@
binary-font = customPkgs.binary-font.binary-clock-font; binary-font = customPkgs.binary-font.binary-clock-font;
}; };
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
hyprlanddots = inputs.hyprland-dots; hyprlanddots = inputs.hyprland-dots;
@ -151,7 +143,7 @@
pinix = inputs.pinix.packages.${system}.default; pinix = inputs.pinix.packages.${system}.default;
wine-cachyos = inputs.nix-gaming.packages.${system}.wine-cachyos; wine-cachyos = inputs.nix-gaming.packages.${system}.wine-cachyos;
proton-cachyos = inputs.proton-cachyos.packages.${system}.proton-cachyos; proton-cachyos = inputs.proton-cachyos.packages.${system}.proton-cachyos;
desktop-gremlin = inputs.linux-desktop-gremlin.packages.${pkgs.system}.default; desktop-gremlin = inputs.linux-desktop-gremlin.packages.${system}.default;
ipc-bridge = inputs.nix-gaming.packages.${system}.wine-discord-ipc-bridge; ipc-bridge = inputs.nix-gaming.packages.${system}.wine-discord-ipc-bridge;
dgop = unstablePkgs.dgop; dgop = unstablePkgs.dgop;
hyprland = inputs.hyprland.packages.${system}.default; hyprland = inputs.hyprland.packages.${system}.default;
@ -193,7 +185,6 @@
}; };
nixosConfigurations.magus = nixpkgs.lib.nixosSystem { nixosConfigurations.magus = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
}; };