-
Notifications
You must be signed in to change notification settings - Fork 1
/
manual.nix
executable file
·52 lines (40 loc) · 2.17 KB
/
manual.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ ... }:
#---------------------------------------------------------------------
# Tolga Erok
# 10/6/2023
# My personal NIXOS KDE configuration
#
# ¯\_(ツ)_/¯
#---------------------------------------------------------------------
{
imports = [
#---------------------------------------------------------------------
# Laptop: Apple MacBook Pro 9.2 i7-3615QM Intel HD Graphics 4000
#---------------------------------------------------------------------
# ./machines/Apple-MacBookPro-9.2/Apple-configuration.nix
#---------------------------------------------------------------------
# Laptop: HP-i5-2520M x 4 ProBook 6460b Intel HD Graphics 3000
#---------------------------------------------------------------------
# ./machines/HP-i5-ProBook-6460b/configuration.nix
#---------------------------------------------------------------------
# Desktop: HP-i7-2660-EilteDesk-8200-SFF ATI Radeon R5 340x OEM
#---------------------------------------------------------------------
# ./machines/HP-i7-2660-EilteDesk-8200-SFF/EliteDesk-8200-configuration.nix
#---------------------------------------------------------------------
# Laptop: HP-i7-3615QM x 4 EliteBook Folio 9470M Intel HD Graphics 4000
#---------------------------------------------------------------------
# ./machines/HP-i7-Folio-9470M/configuration.nix
#---------------------------------------------------------------------
# Main: HP-i7-4770 x 8 EliteDesk G1 800 SFF Nvidia GT-1030
#---------------------------------------------------------------------
./machines/HP-i7-4770-EliteDesk-G1-800-SFF/EliteDesk-800-G1-configuration.nix
#---------------------------------------------------------------------
# Laptop: Samsung NP530U4B i5-2467M ATI Radeon HD 7550M
#---------------------------------------------------------------------
# ./machines/Samsung-NP530U4B-configuration.nix
#---------------------------------------------------------------------
# Laptop: Sony Vaio VPCEB13FG i3-330M x 2 Intel HD Graphics
#---------------------------------------------------------------------
# ./machines/Sony-Vaio-i3-330M/configuration.nix
];
}