Compare commits
No commits in common. "4f126bab9001af5d5e0d77da2a18c4a882c91947" and "01e5fb42d337290fe16e2187a052bc346402fb2b" have entirely different histories.
4f126bab90
...
01e5fb42d3
@ -12,7 +12,7 @@
|
||||
wallpaper2 = builtins.toString theme.wallpaper.monitor2;
|
||||
in
|
||||
{
|
||||
preload = lib.mkForce [
|
||||
preload = lib.mkDefault [
|
||||
wallpaper1
|
||||
wallpaper2
|
||||
];
|
||||
@ -21,7 +21,7 @@
|
||||
let
|
||||
common = import ../common.nix;
|
||||
in
|
||||
lib.mkForce [
|
||||
lib.mkDefault [
|
||||
"${common.monitor1},${wallpaper1}"
|
||||
"${common.monitor2},${wallpaper2}"
|
||||
];
|
||||
|
7
justfile
7
justfile
@ -1,30 +1,25 @@
|
||||
# List all receipes
|
||||
default:
|
||||
@just --list
|
||||
|
||||
# Format all files in repo
|
||||
fmt:
|
||||
treefmt --on-unmatched info
|
||||
|
||||
# Build a specific host but don't activate it. Host must use same system as target system
|
||||
build HOST:
|
||||
git add .
|
||||
just fmt
|
||||
nh os build . -H {{HOST}}
|
||||
|
||||
# Switch to new config, but don't add to bootloader
|
||||
|
||||
test *FLAGS:
|
||||
git add .
|
||||
just fmt
|
||||
nh os test . {{FLAGS}}
|
||||
|
||||
# Switch to new config and add to bootloader
|
||||
switch *FLAGS:
|
||||
git add .
|
||||
just fmt
|
||||
nh os switch . {{FLAGS}}
|
||||
|
||||
# Switch to new config and add to bootloader without formatting or adding to git
|
||||
switch-now *FLAGS:
|
||||
nh os switch . {{FLAGS}}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user