finalize configuration before reinstalling
This commit is contained in:
parent
cc4a6f08a8
commit
b26fd20ead
4 changed files with 14 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, username, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -6,8 +6,6 @@
|
||||||
./packages.nix
|
./packages.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
users.allowNoPasswordLogin = true; /* DEBUG */
|
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
@ -45,13 +43,13 @@
|
||||||
# install this configuration on a device without it exploding when you don't have
|
# install this configuration on a device without it exploding when you don't have
|
||||||
# these specific partitions.
|
# these specific partitions.
|
||||||
|
|
||||||
"/mnt/vault" = {
|
"/home/${username}/mounts/vault" = {
|
||||||
device = "/dev/disk/by-uuid/048d175b-0e3e-4ec7-955b-3d9a45f9f237";
|
device = "/dev/disk/by-uuid/048d175b-0e3e-4ec7-955b-3d9a45f9f237";
|
||||||
options = [ "nofail" ];
|
options = [ "nofail" ];
|
||||||
fsType = "xfs";
|
fsType = "xfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
"/mnt/attic" = {
|
"/home/${username}/mounts/attic" = {
|
||||||
device = "/dev/disk/by-uuid/ec32ce36-9f53-4f44-ac8f-2c9163f0b3d7";
|
device = "/dev/disk/by-uuid/ec32ce36-9f53-4f44-ac8f-2c9163f0b3d7";
|
||||||
options = [ "nofail" ];
|
options = [ "nofail" ];
|
||||||
fsType = "xfs";
|
fsType = "xfs";
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
(modulesPath + "/profiles/qemu-guest.nix")
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
users.allowNoPasswordLogin = true; /* DEBUG */
|
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
|
|
@ -38,6 +38,12 @@ in{
|
||||||
"org.gnome.Nautilus.desktop"
|
"org.gnome.Nautilus.desktop"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
"org/gnome/shell/extensions/forge" = {
|
||||||
|
float-always-on-top-enabled = false;
|
||||||
|
focus-border-toggle = false;
|
||||||
|
move-pointer-to-focus = true;
|
||||||
|
stacked-tiling-mode-enable = true;
|
||||||
|
};
|
||||||
"org/gnome/shell/extensions/just-perfection" = {
|
"org/gnome/shell/extensions/just-perfection" = {
|
||||||
calendar = false;
|
calendar = false;
|
||||||
events-button = false;
|
events-button = false;
|
||||||
|
|
|
@ -49,6 +49,11 @@
|
||||||
users."${username}" = {
|
users."${username}" = {
|
||||||
directories = [
|
directories = [
|
||||||
".config/dconf"
|
".config/dconf"
|
||||||
|
|
||||||
|
# Right now I don't really modify much here other than the tab group tab colour
|
||||||
|
# but I might in the future want to manage these files using home-manager instead
|
||||||
|
# of having them set imperatively and simply persisted.
|
||||||
|
".config/forge"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue