Skip to content

Commit a4e2cc1

Browse files
committed
feat(nao): enabled + settings
1 parent 8885495 commit a4e2cc1

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

flake.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
scripts.url = "github:luisnquin/scripts";
1414
hyprland.url = "github:hyprwm/Hyprland";
1515
nixpkgs.url = "nixpkgs/nixos-unstable";
16+
nao.url = "github:luisnquin/nao";
1617
};
1718

1819
outputs = inputs:
@@ -81,6 +82,7 @@
8182
inherit pkgs;
8283

8384
modules = [
85+
nao.homeManagerModules.default
8486
spicetify-nix.homeManagerModule
8587
./home/options
8688
./home/home.nix

home/modules/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
./gui-programs.nix
1010
./browser.nix
1111
./spotify.nix
12+
./nao.nix
1213
./bat.nix
1314
];
1415
}

home/modules/nao.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
programs.nao = {
3+
enable = true;
4+
config = {
5+
editor.name = "nano";
6+
theme = "rose-pine";
7+
readOnlyOnConflict = false;
8+
};
9+
};
10+
}

0 commit comments

Comments
 (0)