first commit
This commit is contained in:
commit
e46461326d
10 changed files with 632 additions and 0 deletions
40
flake.nix
Normal file
40
flake.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
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";
|
||||
# };
|
||||
# sTodo = {
|
||||
# url = "git+https://git.stuce.ch/stuce/sTodo";
|
||||
# };
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs,
|
||||
# home-manager,
|
||||
# nvf,
|
||||
sTodo, ... }: {
|
||||
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = nixpkgs;
|
||||
modules = [
|
||||
./configuration.nix
|
||||
# nvf.nixosModules.default
|
||||
sTodo.nixosModules.sTodo
|
||||
# home-manager.nixosModules.home-manager
|
||||
# {
|
||||
# home-manager.useGlobalPkgs = true;
|
||||
# home-manager.users.stuce.imports = [./home.nix];
|
||||
# }
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue