Created headful and headless files for upcoming changes

This commit is contained in:
Random936
2024-07-04 18:22:24 -07:00
parent 1eed0aa287
commit 2f097552b6
6 changed files with 71 additions and 27 deletions

27
home/headless-nixos.nix Normal file
View File

@@ -0,0 +1,27 @@
{ inputs, config, pkgs, ... }: {
home = {
username = "random";
homeDirectory = "/home/random";
};
imports = [
./shared.nix
./emacs.nix
./zsh.nix
];
home.packages = with pkgs; [];
home.file = {
".Xresources".source = ../dotfiles/.Xresources;
".scripts/brightness.sh".source = ../dotfiles/.scripts/brightness.sh;
".scripts/autostart_desktop.sh".source = ../dotfiles/.scripts/autostart_desktop.sh;
".screenlayout/launch.sh".source = ../dotfiles/.screenlayout/launch.sh;
".screenlayout/wallpapers.sh".source = ../dotfiles/.screenlayout/wallpapers.sh;
".config/i3/config".source = ../dotfiles/.config/i3/config;
".config/rofi/config.rasi".source = ../dotfiles/.config/rofi/config.rasi;
".config/polybar/config.ini".source = ../dotfiles/.config/polybar/config.ini;
};
}