374cb77150
starting ricing.
18 lines
257 B
Nix
18 lines
257 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./programs/bash.nix
|
|
./programs/git.nix
|
|
];
|
|
|
|
home.file = {
|
|
".config/hypr".source = ./config/hypr;
|
|
};
|
|
|
|
home.username = "river";
|
|
home.homeDirectory = "/home/river";
|
|
|
|
home.stateVersion = "26.05";
|
|
}
|