forked from Bun/nixos-config
Gonna revert and modify the original flake, add back overlays from a shared file, and figure things out after
This commit is contained in:
parent
65f90a0bf3
commit
4ad26636a7
17 changed files with 116 additions and 14 deletions
12
modules/profiles/pc/home/default.nix
Normal file
12
modules/profiles/pc/home/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../../../home
|
||||
../../../home/users
|
||||
../../../home/files
|
||||
../../../home/settings
|
||||
../../../home/programs
|
||||
../../../home/sway
|
||||
../../../home/utils
|
||||
];
|
||||
}
|
17
modules/profiles/pc/system/default.nix
Normal file
17
modules/profiles/pc/system/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../../../system
|
||||
../../../system/accounts
|
||||
../../../system/desktop
|
||||
../../../system/devices
|
||||
../../../system/devices/networking/firewall/server
|
||||
../../../system/programs
|
||||
../../../system/services
|
||||
];
|
||||
|
||||
networking.hostName = "firefly";
|
||||
|
||||
# Force Electron to use Wayland
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue