diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-01-10 14:28:50 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-01-10 14:28:50 -0500 |
| commit | d37741dd73c7ae3703587ac9318e9d0855553e95 (patch) | |
| tree | 8e189b057e32c4aba89903f9a4e85f673bfe3255 /flake.nix | |
| parent | 6ea74c2ead3c77ac5d04e315de5508a0f2f1ec12 (diff) | |
minor changes, prepping for a refactor
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -3,13 +3,13 @@ inputs = { disko = { - url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs"; + url = "github:nix-community/disko"; }; home-manager = { - url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; + url = "github:nix-community/home-manager"; }; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; @@ -22,9 +22,11 @@ home-manager, nixpkgs, }: + let + pkgs = nixpkgs.legacyPackages.x86_64-linux; + in { - formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style; - + formatter.x86_64-linux = pkgs.nixfmt-rfc-style; nixosConfigurations = { limbo = nixpkgs.lib.nixosSystem { modules = [ |
