push
This commit is contained in:
8
new/devices/desktop.nix
Normal file
8
new/devices/desktop.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ lib, config, inputs, pkgs, options, desktop, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../modules/cosmic.nix
|
||||
../modules/graphics.nix
|
||||
]
|
||||
}
|
||||
8
new/devices/laptop.nix
Normal file
8
new/devices/laptop.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, pkgs, device, ... }:
|
||||
|
||||
{
|
||||
services.logind.settings.Login = {
|
||||
HandleLidSwitch = "ignore";
|
||||
HandleLidSwitchDocked = "ignore";
|
||||
};
|
||||
}
|
||||
22
new/devices/server.nix
Normal file
22
new/devices/server.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../modules/vscode-server.nix
|
||||
../modules/mailserver.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
nh
|
||||
comma
|
||||
nix-index
|
||||
|
||||
home-manager
|
||||
|
||||
micro
|
||||
wget
|
||||
git
|
||||
|
||||
fastfetch
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user