This commit is contained in:
parent
25df031447
commit
f5782edede
4 changed files with 14 additions and 10 deletions
|
@ -92,6 +92,7 @@
|
||||||
in
|
in
|
||||||
map mkConfig [
|
map mkConfig [
|
||||||
"~/private/"
|
"~/private/"
|
||||||
|
"~/projects/"
|
||||||
"/etc/nixos/"
|
"/etc/nixos/"
|
||||||
"~/.password-store/"
|
"~/.password-store/"
|
||||||
"~/.stateful/"
|
"~/.stateful/"
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
criteria = "California Institute of Technology 0x1404 Unknown";
|
criteria = "California Institute of Technology 0x1404 Unknown";
|
||||||
scale = null;
|
scale = null;
|
||||||
};
|
};
|
||||||
chur-4k.output = {
|
tallinn-4k.output = {
|
||||||
criteria = "HP Inc. HP Z27 CN482201RP";
|
criteria = "HP Inc. HP Z27 CN482201RP";
|
||||||
scale = 1.2;
|
scale = 1.2;
|
||||||
};
|
};
|
||||||
|
@ -44,11 +44,11 @@
|
||||||
criteria = "Eizo Nanao Corporation EV2450 92395086";
|
criteria = "Eizo Nanao Corporation EV2450 92395086";
|
||||||
scale = null;
|
scale = null;
|
||||||
};
|
};
|
||||||
estonia-thinkvision.output = {
|
tallinn-thinkvision.output = {
|
||||||
criteria = "Lenovo Group Limited LEN P24h-20 V307DA61";
|
criteria = "Lenovo Group Limited LEN P24h-20 V307DA61";
|
||||||
scale = null;
|
scale = null;
|
||||||
};
|
};
|
||||||
estonia-tv.output = {
|
tallinn-tv.output = {
|
||||||
criteria = "Samsung Electric Company SAMSUNG 0x01000E00";
|
criteria = "Samsung Electric Company SAMSUNG 0x01000E00";
|
||||||
scale = 2.0;
|
scale = 2.0;
|
||||||
};
|
};
|
||||||
|
@ -64,17 +64,20 @@
|
||||||
(mkProfile "mobile-only" [
|
(mkProfile "mobile-only" [
|
||||||
(mkScreen x1-screen "0,0")
|
(mkScreen x1-screen "0,0")
|
||||||
])
|
])
|
||||||
|
(mkProfile "desktop-oly" [
|
||||||
|
(mkScreen tallinn-4k "0,0")
|
||||||
|
])
|
||||||
(mkProfile "home-dock" [
|
(mkProfile "home-dock" [
|
||||||
(mkScreen x1-screen "0,120")
|
(mkScreen x1-screen "0,120")
|
||||||
(mkScreen chur-4k "1920,0")
|
(mkScreen tallinn-4k "1920,0")
|
||||||
])
|
])
|
||||||
(mkProfile "saba-desk" [
|
(mkProfile "saba-desk" [
|
||||||
(mkScreen x1-screen "0,0")
|
(mkScreen x1-screen "0,0")
|
||||||
(mkScreen estonia-thinkvision "1920,0")
|
(mkScreen tallinn-thinkvision "1920,0")
|
||||||
])
|
])
|
||||||
(mkProfile "tv" [
|
(mkProfile "tv" [
|
||||||
((mkScreen x1-screen "0,0") // { status = "disable"; })
|
((mkScreen x1-screen "0,0") // { status = "disable"; })
|
||||||
(mkScreen estonia-tv "0,0")
|
(mkScreen tallinn-tv "0,0")
|
||||||
])
|
])
|
||||||
(mkProfile "walrueti" [
|
(mkProfile "walrueti" [
|
||||||
(mkScreen x1-screen "0,0")
|
(mkScreen x1-screen "0,0")
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Amsterdam";
|
time.timeZone = "Europe/Tallinn";
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like fi:le locations and database versions
|
# settings for stateful data, like fi:le locations and database versions
|
||||||
|
|
|
@ -14,12 +14,12 @@
|
||||||
content = {
|
content = {
|
||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
format = "vfat";
|
format = "vfat";
|
||||||
mountpoint = "/boot-primary";
|
mountpoint = "/boot";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
raid_system = {
|
raid_system = {
|
||||||
start = "5G";
|
start = "30G";
|
||||||
size = "98%";
|
size = "100%";
|
||||||
content = {
|
content = {
|
||||||
type = "mdraid";
|
type = "mdraid";
|
||||||
name = "raid_system";
|
name = "raid_system";
|
||||||
|
|
Loading…
Add table
Reference in a new issue