nixos-config/.my_old_dotfiles/flake.nix.save
2024-07-17 16:50:35 +02:00

23 lines
548 B
Plaintext

{
description = "My first flake!";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # which is the branch. You should use the last version or the unstable
home-manager.url = github:nix-community/home-manager/
}; # git links
outputs = { self, nixpkgs, ... }:
let
lib = nixpkgs.lib; # we pass lib to be able to use ie: lib.nixosSystem and others
in {
nixosConfigurations = {
nixosaku = lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
};
}