I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
592 B

{
description = "Immutable NixOS dotfiles.";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-unstable.url = "nixpgs/master";
emacs-overlay.url = "github:nix-comunity/emacs-overlay";
nixos-hardwre.url = "github:nixos/nixos-hardware";
};
outputs = inputs @ { self, nixpkgs, ... }: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/nixos/configuration.nix
./hosts/nixos/hardware.nix
./config/cachix.nix
];
};
};
}