.
This commit is contained in:
parent
d738ec9c08
commit
4e74198d10
1 changed files with 11 additions and 9 deletions
20
flake.nix
20
flake.nix
|
|
@ -4,29 +4,31 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||||
|
|
||||||
# nvf = {
|
nvf = {
|
||||||
# url = "github:notashelf/nvf";
|
url = "github:notashelf/nvf";
|
||||||
# inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
# };
|
};
|
||||||
|
|
||||||
# home-manager = {
|
# home-manager = {
|
||||||
# url = "github:nix-community/home-manager";
|
# url = "github:nix-community/home-manager";
|
||||||
# inputs.nixpkgs.follows = "nixpkgs";
|
# inputs.nixpkgs.follows = "nixpkgs";
|
||||||
# };
|
# };
|
||||||
calDavToCsv = { url = "git+https://git.stuce.ch/stuce/calDAVtoCSV"; };
|
calDavToCsv = {
|
||||||
|
url = "git+https://git.stuce.ch/stuce/calDAVtoCSV";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs,
|
outputs = { self, nixpkgs,
|
||||||
# home-manager,
|
# home-manager,
|
||||||
# nvf,
|
nvf, calDavToCsv, ... }: {
|
||||||
calDavToCsv, ... }: {
|
|
||||||
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = nixpkgs;
|
specialArgs = nixpkgs;
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
# nvf.nixosModules.default
|
nvf.nixosModules.default
|
||||||
calDavToCsv.nixosModules.calDavToCsv
|
# calDavToCsv.nixosModules.calDAVtoCSV
|
||||||
# home-manager.nixosModules.home-manager
|
# home-manager.nixosModules.home-manager
|
||||||
# {
|
# {
|
||||||
# home-manager.useGlobalPkgs = true;
|
# home-manager.useGlobalPkgs = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue