from what i can gather, this commit should bring full feature parity between both flakes
This commit is contained in:
parent
1ceb065323
commit
a1168af031
3 changed files with 6 additions and 4 deletions
|
|
@ -17,6 +17,8 @@
|
||||||
username = vars.user; #this is set in flake.nix
|
username = vars.user; #this is set in flake.nix
|
||||||
homeDirectory = "/home/${username}"; #change this if you use a non-standard home dir
|
homeDirectory = "/home/${username}"; #change this if you use a non-standard home dir
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
|
shell.enableBashIntegration = true;
|
||||||
|
sessionVariables = { PASSWORD_STORE_DIR = "$HOME/sync/general/pass"; ELECTRON_OZONE_PLATFORM_HINT = "auto";};
|
||||||
file = {
|
file = {
|
||||||
".config/waybar/config".source = (if vars.user == "alyx" then config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/terminal" else config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/modern");
|
".config/waybar/config".source = (if vars.user == "alyx" then config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/terminal" else config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/modern");
|
||||||
".config/waybar/style.css".source = (if vars.user == "alyx" then config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/terminal.css" else config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/modern.css");
|
".config/waybar/style.css".source = (if vars.user == "alyx" then config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/terminal.css" else config.lib.file.mkOutOfStoreSymlink "${homeDirectory}/.config/nixos/home/waybar/modern.css");
|
||||||
|
|
@ -50,13 +52,15 @@
|
||||||
|
|
||||||
services.mpd-discord-rpc.enable = true;
|
services.mpd-discord-rpc.enable = true;
|
||||||
|
|
||||||
|
services.syncthing.enable = (vars.useSyncthing);
|
||||||
|
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = (vars.class != "handheld");
|
enable = (vars.class != "handheld");
|
||||||
};
|
};
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "cydiralis";
|
userName = (if vars.user == "alyx" then "cydiralis" else "beanigen");
|
||||||
userEmail = "cydiralis@proton.me";
|
userEmail = (if vars.user == "alyx" then "cydiralis@proton.me" else "beanigit@protonmail.com");
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
commit.gpgsign = true;
|
commit.gpgsign = true;
|
||||||
gpg.format = "ssh";
|
gpg.format = "ssh";
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
niri, default.nix, waybar
|
|
||||||
1
todo
1
todo
|
|
@ -1 +0,0 @@
|
||||||
add all hosts, add configs, finish home manager setup
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue