Skip to content

Commit

Permalink
🍒 Initial 'cherry' host NixOS config
Browse files Browse the repository at this point in the history
  • Loading branch information
Snuggle committed Aug 31, 2024
1 parent b41dec7 commit cbb474d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
17 changes: 17 additions & 0 deletions hosts/cherry/configuration.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).

{ config, lib, pkgs, ... }:

{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../common/configuration.nix
];

system.stateVersion = "24.05"; # Did you read the comment?

}

3 changes: 1 addition & 2 deletions hosts/common/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;

#fonts = import ./fonts.nix pkgs;
fonts = import ./fonts.nix pkgs;


environment.sessionVariables.TERMINAL = [ "kitty" ];
Expand Down Expand Up @@ -388,7 +388,6 @@
shell = pkgs.fish;
openssh.authorizedKeys.keys = [ (builtins.fetchurl {
url = "https://github.com/${config.users.users.snuggle.name}.keys";
sha256 = "1bvyxgb893q00nfbns7qghc25j7f5dnnnjfd0nbq0cllpjrqqfk6";
}) ];
extraGroups = [ "wheel" "libvirtd" "scanner" "lp" "adbusers" "docker" "networkmanager" ];
};
Expand Down

0 comments on commit cbb474d

Please sign in to comment.