Compare commits
No commits in common. "7f34e497a2d6b5bc93085ec8da2ec16c29a6f1c4" and "3237b034b9a6d661b42ccaa071b52f2586e28ac8" have entirely different histories.
7f34e497a2
...
3237b034b9
8 changed files with 11 additions and 29 deletions
|
@ -18,7 +18,6 @@ in {
|
|||
hostname = mkOption {};
|
||||
realname = mkOption {default = "Myned";};
|
||||
username = mkOption {default = "myned";};
|
||||
sync = mkOption {default = "/home/myned/SYNC";};
|
||||
|
||||
### Hardware
|
||||
width = mkOption {default = 1920;};
|
||||
|
|
|
@ -245,7 +245,6 @@ in {
|
|||
];
|
||||
vm = rules: [
|
||||
(class "(sdl-|wl|x)freerdp" (rules ++ ["nomaxsize" "tile"]))
|
||||
(class "org\\.remmina\\.Remmina" (rules ++ ["tile"]))
|
||||
(class "virt-manager" rules)
|
||||
];
|
||||
wine = rules: [
|
||||
|
@ -290,7 +289,7 @@ in {
|
|||
(fields {
|
||||
class = "^com\\.github\\.wwmm\\.easyeffects$";
|
||||
title = "^Easy Effects$"; # Main window
|
||||
} ["center" "float" "size 50% 50%"])
|
||||
} ["center" "size 50% 50%"])
|
||||
(fields {
|
||||
class = "^discord$";
|
||||
title = "^Discord Updater$"; # Update dialog
|
||||
|
@ -298,19 +297,19 @@ in {
|
|||
(fields {
|
||||
class = "^lutris$";
|
||||
title = "^Lutris$"; # Main window
|
||||
} ["center" "float" "size 1000 500"])
|
||||
} ["center" "size 1000 500"])
|
||||
(fields {
|
||||
class = "^org\\.gnome\\.Loupe$";
|
||||
title = "^wallpaper.png$";
|
||||
} ["tile" "workspace special:wallpaper"])
|
||||
(fields {
|
||||
class = "^org\\.remmina\\.Remmina$";
|
||||
title = "^Remmina.*$"; # Main windows
|
||||
} ["center" "float" "size 1000 500"])
|
||||
title = "^Remmina Remote Desktop Client$"; # Main window
|
||||
} ["center" "size 1000 500"])
|
||||
(fields {
|
||||
class = "^steam$";
|
||||
title = "^notificationtoasts$"; # Steam notifications
|
||||
} ["float" "nofocus" "pin"])
|
||||
} ["nofocus" "pin"])
|
||||
(fields {
|
||||
class = "^steam$";
|
||||
title = "^Steam$"; # Main window
|
||||
|
|
|
@ -64,7 +64,6 @@ with lib; {
|
|||
#// onedrive.enable = true;
|
||||
path-of-building.enable = true;
|
||||
rbw.enable = true;
|
||||
remmina.enable = true;
|
||||
rofi-rbw.enable = true;
|
||||
rofi.enable = true;
|
||||
seahorse.enable = true;
|
||||
|
|
|
@ -546,7 +546,9 @@ in {
|
|||
|
||||
# Imperative symlinks intended to be synced
|
||||
"Downloads/stg" = mkIf config.custom.full {
|
||||
source = config.home-manager.users.${config.custom.username}.lib.file.mkOutOfStoreSymlink "${config.custom.sync}/common/config/extensions/Simple Tab Groups";
|
||||
source =
|
||||
config.home-manager.users.${config.custom.username}.lib.file.mkOutOfStoreSymlink
|
||||
"/home/myned/SYNC/common/config/extensions/Simple Tab Groups";
|
||||
};
|
||||
|
||||
# Work around icon dissociation due to missing --name flag in actions
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.custom.programs.remmina;
|
||||
in {
|
||||
options.custom.programs.remmina.enable = mkOption {default = false;};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${config.custom.username} = {
|
||||
#!! Imperative configuration
|
||||
home.file.".config/remmina/remmina.pref".source = config.home-manager.users.${config.custom.username}.lib.file.mkOutOfStoreSymlink "${config.custom.sync}/linux/config/remmina/remmina.pref";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -5,7 +5,7 @@
|
|||
# https://github.com/sigoden/argc
|
||||
|
||||
# @meta combine-shorts
|
||||
# @option -C --client=remmina Remote desktop client to connect with (remmina or <sdl-|x|w>freerdp)
|
||||
# @option -C --client=remmina Remote desktop client to connect with (remmina or <x|w|sdl>-freerdp)
|
||||
# @option -P --password Password to connect with
|
||||
# @option -S --scale=100 Set FreeRDP resolution scale
|
||||
# @option -U --username! Username to connect with
|
||||
|
|
|
@ -21,7 +21,7 @@ in {
|
|||
wantedBy = ["default.target"];
|
||||
|
||||
serviceConfig = {
|
||||
WorkingDirectory = ["/home/${config.custom.username}/.git/modufur"];
|
||||
WorkingDirectory = ["/home/myned/.git/modufur"];
|
||||
ExecStart = ["${poetry}/bin/poetry run python -OO run.py >&2"];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -143,7 +143,7 @@ in {
|
|||
|
||||
#!! Must be downloaded manually due to licensing
|
||||
# (ciscoPacketTracer8.overrideAttrs {
|
||||
# src = ${config.custom.sync}/linux/config/cisco/CiscoPacketTracer822_amd64_signed.deb;
|
||||
# src = /home/myned/SYNC/linux/config/cisco/CiscoPacketTracer822_amd64_signed.deb;
|
||||
# })
|
||||
|
||||
### CLI applications
|
||||
|
|
Loading…
Add table
Reference in a new issue