Update
This commit is contained in:
parent
de9990afd4
commit
e3039b6cde
1 changed files with 0 additions and 15 deletions
|
@ -19,11 +19,6 @@
|
||||||
xkbVariant = "";
|
xkbVariant = "";
|
||||||
autorun = true;
|
autorun = true;
|
||||||
videoDrivers = [ ] ++ lib.optional (builtins.isString gpu) gpu;
|
videoDrivers = [ ] ++ lib.optional (builtins.isString gpu) gpu;
|
||||||
};
|
|
||||||
|
|
||||||
services.xserver = {
|
|
||||||
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
|
|
||||||
# Enable the KDE Plasma 6 Desktop Environment.
|
|
||||||
desktopManager.plasma6.enable = true;
|
desktopManager.plasma6.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -51,15 +46,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = [ pkgs.at pkgs.fx pkgs.nodejs pkgs.bash ];
|
path = [ pkgs.at pkgs.fx pkgs.nodejs pkgs.bash ];
|
||||||
script = ''
|
script = ''
|
||||||
ls /
|
|
||||||
echo "hello world"
|
|
||||||
whoami
|
|
||||||
id
|
|
||||||
source ~/.bashrc
|
source ~/.bashrc
|
||||||
# It doesn't get here for some reason
|
# It doesn't get here for some reason
|
||||||
TIME=`cat /tmp/wttr.in | grep sunrise | head -n 1 | awk {'print $2" "$3'} | sed -e 's/"//g' | sed -e 's/,//'`
|
TIME=`cat /tmp/wttr.in | grep sunrise | head -n 1 | awk {'print $2" "$3'} | sed -e 's/"//g' | sed -e 's/,//'`
|
||||||
echo "Time to run at: $TIME"
|
echo "Time to run at: $TIME"
|
||||||
echo "hello world 2"
|
|
||||||
echo "plasma-apply-colorscheme -platform offscreen Arc" | at $TIME
|
echo "plasma-apply-colorscheme -platform offscreen Arc" | at $TIME
|
||||||
'';
|
'';
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
@ -68,15 +58,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
path = [ pkgs.at pkgs.fx pkgs.nodejs pkgs.bash ];
|
path = [ pkgs.at pkgs.fx pkgs.nodejs pkgs.bash ];
|
||||||
script = ''
|
script = ''
|
||||||
ls /
|
|
||||||
echo "hello world"
|
|
||||||
whoami
|
|
||||||
id
|
|
||||||
source ~/.bashrc
|
source ~/.bashrc
|
||||||
# It doesn't get here for some reason
|
# It doesn't get here for some reason
|
||||||
TIME=`cat /tmp/wttr.in | grep sunset | head -n 1 | awk {'print $2" "$3'} | sed -e 's/"//g' | sed -e 's/,//'`
|
TIME=`cat /tmp/wttr.in | grep sunset | head -n 1 | awk {'print $2" "$3'} | sed -e 's/"//g' | sed -e 's/,//'`
|
||||||
echo "Time to run at: $TIME"
|
echo "Time to run at: $TIME"
|
||||||
echo "hello world 2"
|
|
||||||
echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at $TIME
|
echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at $TIME
|
||||||
'';
|
'';
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
Loading…
Reference in a new issue