nix/flake.nix

84 lines
2.6 KiB
Nix
Raw Normal View History

2024-11-21 22:31:12 -07:00
{
description = "NixOS Configuration";
inputs = {
# General NixOS config
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-24-11.url = "github:NixOS/nixpkgs/nixos-24.11";
2024-11-21 22:31:12 -07:00
# NixOS Grub Themes (hyperfluent)
nixos-grub-themes = {
url = "github:jeslie0/nixos-grub-themes";
inputs.nixpkgs.follows = "nixpkgs";
};
# SDDM Sugar Candy
sddm-sugar-candy-nix = {
2024-11-21 22:32:17 -07:00
url = "github:Zhaith-Izaliel/sddm-sugar-candy-nix";
2024-11-21 22:31:12 -07:00
inputs.nixpkgs.follows = "nixpkgs";
};
# Home Manager + Plasma
home-manager = {
url = "github:nix-community/home-manager/master";
2024-11-21 22:31:12 -07:00
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
# Firefox Nightly + Addons
firefox-nightly = {
url = "github:nix-community/flake-firefox-nightly";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-addons = {
type = "gitlab";
owner = "rycee";
repo = "nur-expressions";
dir = "/pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
# VSCode extensions
vscode-extensions = {
url = "github:nix-community/nix-vscode-extensions";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ nixpkgs, home-manager, plasma-manager, ... }: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
2024-11-21 22:31:12 -07:00
nixosConfigurations.ty-nixos = nixpkgs.lib.nixosSystem {
inherit system;
2024-11-21 22:31:12 -07:00
modules = [
./hosts/laptop
2024-11-21 22:31:12 -07:00
# Home manager
home-manager.nixosModules.home-manager
./home-manager
];
specialArgs = {
inherit inputs system;
};
};
# Add home manager configuration compatibility to the main flake
homeConfigurations."ty" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
plasma-manager.homeManagerModules.plasma-manager
./home-manager/home.nix
];
extraSpecialArgs = {
inherit inputs system;
2024-11-21 22:31:12 -07:00
};
};
};
}