1
0
Fork 0
forked from autowolf/nix
This commit is contained in:
do butterflies cry? 2026-02-23 12:15:31 +10:00
parent 252814b193
commit eb74b94f02
4 changed files with 102 additions and 90 deletions

View file

@ -1,5 +1,5 @@
{
description = "NixOS configuration";
description = "NixOS configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
@ -15,17 +15,21 @@ description = "NixOS configuration";
silentSDDM = {
url = "github:uiriansan/SilentSDDM";
inputs.nixpkgs.follows = "nixpkgs";
};
};
nixcats.url = "github:BirdeeHub/nixCats-nvim";
hyprland-git = {
hyprland-git = {
url = "github:hyprwm/Hyprland/25250527793eb04bb60f103abe7f06370b9f6e1c";
};
};
outputs = inputs@{ nixpkgs, home-manager, nixcats, ... }: {
outputs = inputs @ {
nixpkgs,
home-manager,
nixcats,
...
}: {
nixosConfigurations = {
girlCore = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
@ -40,8 +44,8 @@ description = "NixOS configuration";
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.users.ashley = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix