forked from autowolf/nix
nixfmt
This commit is contained in:
parent
252814b193
commit
eb74b94f02
4 changed files with 102 additions and 90 deletions
18
flake.nix
18
flake.nix
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue