aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-18 12:04:07 -0400
committerRosa <rosaontheweb@proton.me>2026-03-18 12:04:07 -0400
commitcad9638875c04122b04d47242ddfc76e21e77029 (patch)
treed80077f45b7b0d7513b3af0dabe6d2d992c846b7 /hosts
parentce19b701046c064a1eb39098d8537b2c4964a86e (diff)
progress on sway configuration
Diffstat (limited to 'hosts')
-rw-r--r--hosts/meowbook/default.nix17
1 files changed, 16 insertions, 1 deletions
diff --git a/hosts/meowbook/default.nix b/hosts/meowbook/default.nix
index 084074e..03acecb 100644
--- a/hosts/meowbook/default.nix
+++ b/hosts/meowbook/default.nix
@@ -1,10 +1,23 @@
{ config, ... }:
{
imports = [
- ../../common/region/na-east.nix
./disks.nix
];
+ home-manager.users.rosa = {
+ imports = [
+ ../../modules/user
+ ];
+
+ desktop.sessions.sway.enable = true;
+ editors.kakoune.enable = true;
+ home = {
+ homeDirectory = "/home/rosa";
+ stateVersion = "26.05";
+ username = "rosa";
+ };
+ };
+
networking.networkmanager = {
enable = true;
wifi.macAddress = "random";
@@ -17,4 +30,6 @@
enableDesktopDefaults = true;
stateVersion = "26.05";
};
+
+ users.users.rosa.enable = true;
}