rename "home" directory to "home-manager"
My dotfiles will be moved to the "home" directory later
This commit is contained in:
parent
ee2b9fa9e0
commit
3144febfad
16 changed files with 13 additions and 13 deletions
23
home-manager/desktop/default.nix
Normal file
23
home-manager/desktop/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./fonts.nix
|
||||
./pass.nix
|
||||
./wayland.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
seahorse
|
||||
wofi-emoji
|
||||
];
|
||||
|
||||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Classic";
|
||||
size = 24;
|
||||
};
|
||||
|
||||
gtk.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue