forked from nico/dots
chore: reorganise nix files into base dir
This commit is contained in:
parent
0fdd56c432
commit
104a0ccd4a
13 changed files with 2 additions and 2 deletions
29
flake.nix
Normal file
29
flake.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
description = "nico's linux system.";
|
||||
|
||||
inputs = {
|
||||
# NixOS official package source, using the unstable branch here
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... }@inputs: {
|
||||
nixosConfigurations.pluto = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/nixos-common.nix
|
||||
|
||||
./modules/shell.nix
|
||||
./modules/users.nix
|
||||
./modules/hyprland.nix
|
||||
./modules/applications.nix
|
||||
./modules/firefox.nix
|
||||
./modules/games.nix
|
||||
./modules/boot.nix
|
||||
./modules/stow.nix
|
||||
|
||||
./hosts/pluto/conf.nix
|
||||
./hosts/pluto/hardware-configuration.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue