moved around dotfiles to focus around nix configuration, as most of my systems already utilize Nix/NixOS in some capacity.
This commit is contained in:
parent
eb01c9561f
commit
890c29afca
28 changed files with 47 additions and 255 deletions
18
nix/hosts/cantor/configuration.nix
Executable file
18
nix/hosts/cantor/configuration.nix
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
{ config, pkgs, lib, inputs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../modules/kanata/kanata.nix
|
||||
../../modules/laptop.nix
|
||||
../../modules/efi.nix
|
||||
../../modules/hypr.nix
|
||||
../../modules/syncthing.nix
|
||||
];
|
||||
|
||||
networking.hostName = "cantor";
|
||||
# Overriding this, as the touchpad doesn't work properly anymore.
|
||||
services.libinput.enable = lib.mkForce false;
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue