Initial commit
This commit is contained in:
22
home/main.nix
Normal file
22
home/main.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.username = "duck";
|
||||
home.homeDirectory = "/home/duck";
|
||||
|
||||
imports = [
|
||||
./apps/nvim.nix
|
||||
./apps/fish.nix
|
||||
./apps/tmux.nix
|
||||
];
|
||||
nvim.editor = true;
|
||||
|
||||
home.packages = [
|
||||
pkgs.git
|
||||
pkgs.lazygit
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.stateVersion = "25.11";
|
||||
}
|
||||
Reference in New Issue
Block a user