2022-12-18 17:01:34 +01:00
|
|
|
{
|
2022-12-19 15:45:59 +01:00
|
|
|
description = "My nix setup";
|
2022-12-18 17:01:34 +01:00
|
|
|
inputs = {
|
2023-01-18 23:10:09 +01:00
|
|
|
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
|
2022-12-18 17:01:34 +01:00
|
|
|
home-manager.url = github:nix-community/home-manager;
|
2022-12-27 23:44:46 +01:00
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-20 10:46:28 +01:00
|
|
|
hyprland.url = github:hyprwm/Hyprland;
|
2023-01-20 14:37:59 +01:00
|
|
|
hyprland.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
hyprpaper.url = github:hyprwm/hyprpaper;
|
|
|
|
hyprpaper.inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-21 14:44:23 +01:00
|
|
|
#xdph.url = github:hyprwm/xdg-desktop-portal-hyprland;
|
|
|
|
#xdph.inputs.nixpkgs.follows = "nixpkgs";
|
2022-12-27 17:46:57 +01:00
|
|
|
sops-nix.url = github:Mic92/sops-nix;
|
2022-12-27 18:21:33 +01:00
|
|
|
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-10 11:31:33 +01:00
|
|
|
nix-colors.url = github:Misterio77/nix-colors;
|
2022-12-18 17:01:34 +01:00
|
|
|
};
|
|
|
|
|
2023-01-20 14:37:59 +01:00
|
|
|
outputs = { self, nixpkgs, home-manager, hyprland, hyprpaper, sops-nix, nix-colors }@attrs: {
|
2023-01-10 11:31:33 +01:00
|
|
|
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
|
2022-12-18 17:01:34 +01:00
|
|
|
nixosConfigurations = {
|
|
|
|
thinkpad = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
2023-01-20 14:37:59 +01:00
|
|
|
specialArgs.inputs = attrs;
|
2022-12-18 17:01:34 +01:00
|
|
|
modules = [
|
2022-12-19 20:07:28 +01:00
|
|
|
./hosts/thinkpad
|
2022-12-19 17:43:56 +01:00
|
|
|
./users/rouven
|
2022-12-18 17:07:40 +01:00
|
|
|
home-manager.nixosModules.home-manager
|
2022-12-27 17:46:57 +01:00
|
|
|
sops-nix.nixosModules.sops
|
2023-01-04 16:15:56 +01:00
|
|
|
{
|
2023-01-20 14:37:59 +01:00
|
|
|
home-manager.extraSpecialArgs = attrs;
|
2023-01-04 16:15:56 +01:00
|
|
|
home-manager.users.rouven = {
|
2023-01-09 13:00:09 +01:00
|
|
|
imports = [
|
|
|
|
nix-colors.homeManagerModule
|
2023-01-20 10:46:28 +01:00
|
|
|
hyprland.homeManagerModules.default
|
2023-01-09 13:00:09 +01:00
|
|
|
];
|
|
|
|
config.colorScheme = nix-colors.colorSchemes.dracula;
|
2023-01-04 16:15:56 +01:00
|
|
|
};
|
|
|
|
}
|
2022-12-18 17:01:34 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|