This commit is contained in:
mtgmonkey 2025-06-27 03:53:02 -04:00
commit 099116f79b
6 changed files with 365 additions and 0 deletions

27
flake.nix Normal file
View 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
];
};
};
}