Compare commits
3 commits
62a55c2b45
...
e7e3d03d7a
Author | SHA1 | Date | |
---|---|---|---|
e7e3d03d7a | |||
67cb494c16 | |||
db0e55a89c |
4 changed files with 9 additions and 5 deletions
|
@ -61,7 +61,7 @@
|
||||||
modules = [(import ./hosts/frues-port)];
|
modules = [(import ./hosts/frues-port)];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "frues-port";
|
host = "frues-port";
|
||||||
inherit self inputs username;
|
inherit self inputs username pkgs-unstable;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
frues-vm = nixpkgs.lib.nixosSystem {
|
frues-vm = nixpkgs.lib.nixosSystem {
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
modules = [(import ./hosts/frues-vm)];
|
modules = [(import ./hosts/frues-vm)];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "frues-vm";
|
host = "frues-vm";
|
||||||
inherit self inputs username;
|
inherit self inputs username pkgs-unstable;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
fruesos-live = nixpkgs.lib.nixosSystem {
|
fruesos-live = nixpkgs.lib.nixosSystem {
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "fruesos-live";
|
host = "fruesos-live";
|
||||||
inherit self inputs username;
|
inherit self inputs username pkgs-unstable;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -29,8 +29,10 @@
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
boot.initrd.luks.devices."luks-d56d945e-77a6-4061-ab03-80c2830c6cd3".device = "/dev/disk/by-uuid/d56d945e-77a6-4061-ab03-80c2830c6cd3";
|
||||||
|
|
||||||
swapDevices = [
|
swapDevices = [
|
||||||
{device = "/dev/disk/by-uuid/5f19b076-bad1-4201-b13b-f4aa20b48c3a";}
|
{device = "/dev/disk/by-uuid/77baf723-2a3d-4c90-9323-6ee1a875cbd8";}
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
|
security.polkit.enable = true;
|
||||||
security.sudo.enable = true;
|
security.sudo.enable = true;
|
||||||
security.sudo.package = pkgs.sudo.override {withInsults = true;}; # I'm spanish and I love cursing
|
security.sudo.package = pkgs.sudo.override {withInsults = true;}; # I'm spanish and I love cursing
|
||||||
# security.pam.services.swaylock = { };
|
# security.pam.services.swaylock = { };
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
{...}: {
|
{pkgs, ...}: {
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
settings = {
|
settings = {
|
||||||
# autostart
|
# autostart
|
||||||
exec-once = [
|
exec-once = [
|
||||||
|
"${pkgs.lxqt.lxqt-policykit}/bin/lxqt-policykit-agent &"
|
||||||
"nm-applet &"
|
"nm-applet &"
|
||||||
"wl-clip-persist --clipboard both &"
|
"wl-clip-persist --clipboard both &"
|
||||||
"bash -c 'if [ ! -f ~/.config/hypr/wallpaper.png ]; then wall-change ~/.config/hypr/default_wallpaper.png; fi'"
|
"bash -c 'if [ ! -f ~/.config/hypr/wallpaper.png ]; then wall-change ~/.config/hypr/default_wallpaper.png; fi'"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue