init
This commit is contained in:
commit
099116f79b
6 changed files with 365 additions and 0 deletions
27
flake.nix
Normal file
27
flake.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
description = "Home Manager configuration of test";
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
noshell.url = "github:viperML/noshell";
|
||||
niri-flake.url = "github:sodiboo/niri-flake";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
nixpkgs,
|
||||
noshell,
|
||||
niri-flake,
|
||||
...
|
||||
}: let
|
||||
system = "x86_64-linux";
|
||||
in {
|
||||
nixosConfigurations."nixos" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
niri-flake.nixosModules.niri
|
||||
noshell.nixosModules.default
|
||||
{programs.noshell.enable = true;}
|
||||
./configuration.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue