Allowothers enabled on Nix systems

This commit is contained in:
Bun 2025-05-16 03:31:17 -04:00
parent 88933b9ce2
commit fca8a0e7e4
4 changed files with 25 additions and 3 deletions

View file

@ -2,7 +2,7 @@
{ {
programs.nh = { programs.nh = {
enable = true; enable = true;
flake = "${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}/dirs/Projects/nixos-config"; flake = "${config.xdg.userDirs.extraConfig.XDG_PROJECTS_DIR}/nixos-config";
}; };
home.shellAliases = { home.shellAliases = {

View file

@ -4,7 +4,7 @@
home.persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}" = { home.persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}" = {
enable = true; enable = true;
allowOther = false; allowOther = if !config.targets.genericLinux.enable then true else false;
removePrefixDirectory = true; removePrefixDirectory = true;
directories = let directories = let
home = config.home.homeDirectory; home = config.home.homeDirectory;

View file

@ -15,7 +15,7 @@
# Profiles # Profiles
{ {
profile = { profile = {
name = "tower"; name = "tower-tv";
outputs = [ outputs = [
{ {
criteria = config.displays.tower1; criteria = config.displays.tower1;
@ -37,6 +37,26 @@
]; ];
}; };
} }
{
profile = {
name = "tower";
outputs = [
{
criteria = config.displays.tower1;
position = "1920,405";
}
{
criteria = config.displays.tower2;
position = "0,405";
}
{
criteria = config.displays.tower3;
position = "3840,0";
transform = "90";
}
];
};
}
{ {
profile = { profile = {

View file

@ -15,4 +15,6 @@
btrfs.autoScrub.enable = true; btrfs.autoScrub.enable = true;
fstrim.enable = true; fstrim.enable = true;
}; };
programs.fuse.userAllowOther = true;
} }