65 lines
2.2 KiB
Nix
65 lines
2.2 KiB
Nix
{
|
|
description = ''
|
|
Nixy is a NixOS configuration with home-manager, secrets and custom theming all in one place.
|
|
It's a simple way to manage your system configuration and dotfiles.
|
|
'';
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixvim = {
|
|
url = "github:nix-community/nixvim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
spicetify-nix = {
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixy-wallpapers = {
|
|
url = "github:anotherhadi/nixy-wallpapers";
|
|
flake = false;
|
|
};
|
|
hyprland.url = "github:/hyprwm/Hyprland?submodules=1";
|
|
hyprpolkitagent.url = "github:hyprwm/hyprpolkitagent";
|
|
hyprsunset.url = "github:hyprwm/hyprsunset";
|
|
hyprpanel = {
|
|
url = "github:Jas-SinghFSU/HyprPanel";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
stylix.url = "github:danth/stylix";
|
|
apple-fonts.url = "github:Lyndeno/apple-fonts.nix";
|
|
firefox-addons = {
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
|
};
|
|
|
|
outputs = inputs@{ nixpkgs, ... }: {
|
|
nixosConfigurations = {
|
|
dark = # CHANGEME: This should match the 'hostname' in your variables.nix file
|
|
nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
{
|
|
nixpkgs.overlays = [ inputs.hyprpanel.overlay ];
|
|
_module.args = { inherit inputs; };
|
|
}
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x270 # CHANGEME: check https://github.com/NixOS/nixos-hardware
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.stylix.nixosModules.stylix
|
|
./hosts/laptop/configuration.nix # CHANGEME: change the path to match your host folder
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|