kde connect, etc
This commit is contained in:
parent
1890ba2fc4
commit
058a78b196
|
@ -6,6 +6,7 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./helix.nix
|
./helix.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
|
./kdeconnect.nix
|
||||||
./mpris.nix
|
./mpris.nix
|
||||||
./nh.nix
|
./nh.nix
|
||||||
./shell.nix
|
./shell.nix
|
||||||
|
|
|
@ -122,6 +122,10 @@ in {
|
||||||
"$mod, right, movefocus, r"
|
"$mod, right, movefocus, r"
|
||||||
"$mod, up, movefocus, u"
|
"$mod, up, movefocus, u"
|
||||||
"$mod, down, movefocus, d"
|
"$mod, down, movefocus, d"
|
||||||
|
"$mod SHIFT, left, resizeactive, -30 0"
|
||||||
|
"$mod SHIFT, right, resizeactive, 30 0"
|
||||||
|
"$mod SHIFT, up, resizeactive, 0 -30"
|
||||||
|
"$mod SHIFT, down, resizeactive, 0 30"
|
||||||
]
|
]
|
||||||
++ (lib.concatLists (lib.genList (i: let
|
++ (lib.concatLists (lib.genList (i: let
|
||||||
ws = i + 1;
|
ws = i + 1;
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
_: {
|
||||||
|
services.kdeconnect = {
|
||||||
|
enable = true;
|
||||||
|
indicator = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -41,7 +41,7 @@ _: {
|
||||||
|
|
||||||
btop = {
|
btop = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# settings.color_theme = "ayu";
|
settings.color_theme = "ayu";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,11 @@
|
||||||
./secrets.nix
|
./secrets.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "mpl"; # Define your hostname.
|
networking = {
|
||||||
networking.networkmanager.enable = true;
|
hostName = "mpl"; # Define your hostname.
|
||||||
|
networkmanager.enable = true;
|
||||||
|
firewall.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Allow unfree packages (firmware)
|
# Allow unfree packages (firmware)
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
@ -82,6 +85,9 @@
|
||||||
# SSH askpass
|
# SSH askpass
|
||||||
programs.ssh.enableAskPassword = true;
|
programs.ssh.enableAskPassword = true;
|
||||||
|
|
||||||
|
# KDE connect (firewall)
|
||||||
|
programs.kdeconnect.enable = true;
|
||||||
|
|
||||||
# Home-manager
|
# Home-manager
|
||||||
home-manager = {
|
home-manager = {
|
||||||
extraSpecialArgs = {inherit inputs;};
|
extraSpecialArgs = {inherit inputs;};
|
||||||
|
|
Loading…
Reference in New Issue