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.

33 lines
1014 B

3 months ago
{
description = "Felix' first NixOS System Flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
home-manager = {
url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
3 months ago
};
outputs = { self, nixpkgs, home-manager, plasma-manager, ... }@inputs: {
3 months ago
nixosConfigurations = {
Felix-Desktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.felix = import ./home.nix;
home-manager.sharedModules = [ plasma-manager.homeManagerModules.plasma-manager ];
3 months ago
}
];
};
};
};
}