40 lines
1,013 B
Nix
40 lines
1,013 B
Nix
{
|
|
description = "Config flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
|
|
nvf = {
|
|
url = "github:notashelf/nvf";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# home-manager = {
|
|
# url = "github:nix-community/home-manager";
|
|
# inputs.nixpkgs.follows = "nixpkgs";
|
|
# };
|
|
calDavToCsv = {
|
|
url = "git+https://git.stuce.ch/stuce/calDAVtoCSV";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs,
|
|
# home-manager,
|
|
nvf, calDavToCsv, ... }: {
|
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = nixpkgs;
|
|
modules = [
|
|
./configuration.nix
|
|
nvf.nixosModules.default
|
|
calDavToCsv.nixosModules.default
|
|
# home-manager.nixosModules.home-manager
|
|
# {
|
|
# home-manager.useGlobalPkgs = true;
|
|
# home-manager.users.stuce.imports = [./home.nix];
|
|
# }
|
|
];
|
|
};
|
|
};
|
|
}
|