80 lines
2.1 KiB
Nix
Raw Normal View History

{
description = "NixOS configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprpanel = {
url = "github:Jas-SinghFSU/HyprPanel";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-12-27 21:31:18 +01:00
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
stylix = {
url = "github:danth/stylix/release-24.11";
2024-12-27 21:31:18 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
};
2024-12-27 21:31:18 +01:00
outputs =
inputs@{
self, # Get a ref to outputs
nixpkgs,
nixpkgs-unstable,
home-manager,
hyprpanel,
stylix,
...
}:
2024-12-27 21:31:18 +01:00
let
system = "x86_64-linux";
inherit (self) outputs;
common = import ./common.nix;
2024-12-27 21:31:18 +01:00
in
{
defaultPackage.${system} = home-manager.defaultPackage.${system};
2024-12-27 21:31:18 +01:00
# Adds the nix fmt command to format nix files
formatter.${system} = nixpkgs.legacyPackages.${system}.nixfmt-rfc-style;
2024-12-27 21:31:18 +01:00
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = system;
specialArgs = { inherit outputs inputs; }; # Pass args to modules
modules = [
2024-12-27 21:31:18 +01:00
./configuration.nix
home-manager.nixosModules.home-manager
{
home-manager = {
# Backups conflicting files in case of error
backupFileExtension = "bkp";
useGlobalPkgs = true;
useUserPackages = true;
# Passes inputs as an argument to home-manager
extraSpecialArgs = { inherit inputs; };
users.${common.username} = import ./home-manager;
};
2024-12-27 21:31:18 +01:00
}
stylix.nixosModules.stylix
./overlays.nix
2024-12-27 21:31:18 +01:00
];
};
overlays = {
# Gives access to unstable packages everywhere
unstable-packages = final: _prev: {
unstable = import nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
};
};
}