flakes: Migrate the config and miku to flakes
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config = {
|
||||
let
|
||||
cfg = config.ptw.programs.gnome-terminal;
|
||||
in {
|
||||
options.ptw.programs.gnome-terminal = {
|
||||
enable = lib.mkEnableOption "Configure GNOME Terminal using HomeManager";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = [ pkgs.gnome.gnome-terminal ];
|
||||
home-manager.users."${config.system.singleUser}".programs.gnome-terminal = {
|
||||
home-manager.users."${config.ptw.system.singleUser}".programs.gnome-terminal = {
|
||||
enable = true;
|
||||
profile.default = {
|
||||
visibleName = "default";
|
||||
|
||||
Reference in New Issue
Block a user